Forum Discussion
L_Oram
3 years agoRegular Visitor
DAX Overdue column
I'm new to DAX and was wondering if I could get some help. I want to create a new column that would show if a task is overdue. First I need to check the 'Current Status' column and see if it...
- 3 years ago
status = IF([CurrentStatus]="Not started" || [CurrentStatus]="In progress","Open","Close")
duedate = IF([DueDate]<TODAY(),"Overdue","Not overdue")