Menu

isblank() and isempty()

Updated: 2023-03-27

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 that 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()

Checks to see whether there is text in a field.