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? Any help would be much appreciated. Thanks in Advance!
Try:
ColumnName = IF([state) in {'Awaiting Info','Open','New'}, "Due_Date")