Forum Discussion
packie
Jul 08, 2024Brass Contributor
warn when cell is blank
Hi,
=ISBLANK(E8)
The above formula will warn if E8 contains a value
What formula do I need if E8 does not contain a value
I have been struggling with this for a while now.
I will be kicking myself when I see the answer 🙂
Thank you for taking a look!
=ISBLANK(E8) will return TRUE if E8 is empty, FALSE otherwise.
=NOT(ISBLANK(E8)) will return FALSE if E8 is empty, TRUE otherwise.