Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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 product was shipped)
- 2nd Priority Confirmed Delivery Date (CDD) (Date product has been booked to ship)
- 3rd Priority Expected Delivery Date (EDD) (Product expecting to ship but not yet)
I want a new column to to fill in data using the ASD data frist, if that is blank then use CDD if that is blank then use (EDD).
What is the best way to do so? example below. If there are multiple date fields filled in take in order of above.
(Made a mock up in excel to show - I am trying to create col 'Expected Result'
@Daniel29195 @amitchandak @Ritaf1983 @Ahmedx
Solved! Go to Solution.
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
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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 49 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 86 | |
| 69 | |
| 37 | |
| 29 | |
| 26 |