Forum Discussion
cfurminger
1 year agoFrequent Visitor
How to write IF THEN for Multiple Date Columns Power Bi
Hi All, I am trying to create almost a date hieracrhy for a new date coloumn. In my datasheet I have the following dates in order of importance: - 1st Priority actualshipdate (ASD) (Date...
- 1 year ago
Hello cfurminger
try this DAX
ExpectedDate = COALESCE([ASD], [CDD], [EDD])
Or this
ExpectedDate =
IF(
NOT(ISBLANK([ASD])),
[ASD],
IF(
NOT(ISBLANK([CDD])),
[CDD],
[EDD]
)
)See if this is helpful
nilendraFabric
Super User
1 year agoHello cfurminger
try this DAX
ExpectedDate = COALESCE([ASD], [CDD], [EDD])
Or this
ExpectedDate =
IF(
NOT(ISBLANK([ASD])),
[ASD],
IF(
NOT(ISBLANK([CDD])),
[CDD],
[EDD]
)
)
See if this is helpful