Checks if a value is a reference.
ฟังก์ชันนี้ทำงานใน Google Sheets เหมือนกับใน Excel — ไวยากรณ์และอาร์กิวเมนต์เดียวกัน
ISREF(value)The ISREF function returns TRUE if the provided value is a valid cell reference, and FALSE otherwise. It is commonly used to verify if a formula or a named range points to a valid location in the workbook.
=ISREF(A1)ผลลัพธ์: TRUE
A1 is a valid cell reference.
=ISREF("Hello")ผลลัพธ์: FALSE
The text string "Hello" is not a cell reference.
Yes, if the named range is defined correctly, ISREF will return TRUE.