Forum Discussion
ngarcia
3 years agoFrequent Visitor
IF Function when date is empty (5 Columns)
Hi, I have 5 columns with different dates. I need a function that: IF Column Date1 is empty, take Column Date2, and if this one is empty, take Column Date3 and if this one is empty, take...
- 3 years ago
ngarcia you can use COALESCE function
COALESCE ( Table 1[Date1], Table 1[Date2], Table 1[Date3], Table 1[Date4], Table 1[Date5] )👉 Learn Power BI and Fabric - subscribe to our YT channel - @PowerBIHowTo
parry2k
3 years agoSuper User
ngarcia you can use COALESCE function
COALESCE ( Table 1[Date1], Table 1[Date2], Table 1[Date3], Table 1[Date4], Table 1[Date5] )
👉 Learn Power BI and Fabric - subscribe to our YT channel - @PowerBIHowTo
ngarcia
3 years agoFrequent Visitor
Thank you heaps! this worked!