Forum Discussion
klb0066
8 years agoFrequent Visitor
if statement
Creating a splicer with title "Has Due Date?" with True or False checkboxes. Coded an if statement that recognizes if field was left bank then it is false and if the field has a date it is true. ...
v-juanli-msft
8 years agoCommunity Support
Hi klb0066
Create a calculated column
overdue = IF(ISBLANK([target]),BLANK(),IF([date]>[target],1,0) )
Best Regards
Maggie