Search

if() ex 4

Formula Example Supporter
description
Uses the .empty() function on a property as a condition and returns values depending on whether the property is empty or not.
example tags
formula
if(prop("Date").empty(), "Date is empty", "Date is not empty") - Suppose there is a date property called “Date.” If it is empty (true), it will return “date is empty”; if it is not checked, it will return “date is not empty”. - Here, assume that the Date property is not empty.
linked blog post
results
Date is not empty.