Forum Discussion
lennox25
2 years agoPost Patron
Conditional Formatting Overdue and blank dates
Hi, I have this measure for anything thats overdue past today but need to incorporate blank dates? Conditional_formatting = if(max(Tablet[ Next Visit]) < Today(),"red") Thank you
- 2 years ago
Try this
Conditional_formatting = if(max(Tablet[ Next Visit]) < Today() || ISBLANK(max(Tablet[ Next Visit])),"red")Phil
PhilipTreacy
2 years agoSuper User
Try this
Conditional_formatting = if(max(Tablet[ Next Visit]) < Today() || ISBLANK(max(Tablet[ Next Visit])),"red")
Phil