Menu

isblank() and isempty()

Updated: 2024-11-08

isblank()

Tests whether a field is blank. This is useful when looking to see if there is a date in a field. For example, to check whether there is no spouse date of death on the Info worksheet:

{{isblank(CurrentClient.Info.Filing.SpouseDateOfDeath)}}

Combine this with the not() function to test whether the field has something in it. For example, to test that there is a spouse date of death on the Info worksheet:

{{not(isblank(CurrentClient.Info.Filing.SpouseDateOfDeath))}}

isempty() and isnotempty()

Test if a field is empty or not.