Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Dear Community,
Here is my dataset, would like to know a dax if actual time is blank, will refer the date of DeliveryTime. (Only retreive Delivery time when Actual Time is blank)
Appreciate and thanks for your time help me on this matter.
Here the pbix: https://ufile.io/ymqjsspu
Solved! Go to Solution.
@NickProp28 , Try new column
new column = coalesce([ActualTime],[DeliveryTime])
or
new column = if(isblank([ActualTime]),[DeliveryTime],[ActualTime])
@NickProp28 , Try new column
new column = coalesce([ActualTime],[DeliveryTime])
or
new column = if(isblank([ActualTime]),[DeliveryTime],[ActualTime])
@NickProp28 - Should be:
Column = IF(ISBLANK([ActualTime]),[DeliveryTime],[ActualTime])
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 70 | |
| 50 | |
| 42 | |
| 40 |