Table alerting me on NULL result

I have a table that gets updated twice a day. The most recent row is checked. If there are initials it's fine, but if there is nothing an alert via email is sent out. How do I find out if the cell is NULL to send my alert?

Comments

  • rado98
    rado98 Contributor

    You could create a beastmode along the lines of:

    IFNULL('Initials Column',1)

     

    The alert if Bestmode is 1.

    There will be a bit more to it but that will at least recoginize the NULL part.

This discussion has been closed.