The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!
Solved! Go to Solution.
Try:
ColumnName = IF([state) in {'Awaiting Info','Open','New'}, "Due_Date")
Try:
ColumnName = IF([state) in {'Awaiting Info','Open','New'}, "Due_Date")