Forum Discussion
Anonymous
3 years agoNot applicable
Help Needed with Calculated Column.
Hi All. Below i am pasting a SQL statement: "case when state in ('Awaiting Info','Open','New') then Due_Date" How do i write DAX for calculated column according to the SQL statement above? An...
- 3 years ago
Try:
ColumnName = IF([state) in {'Awaiting Info','Open','New'}, "Due_Date")