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
I'm fairly new to DAX coding so appologies if this is quite a simple one...
I'm looking to show a value if a date field contains data and show as £0 if the date field doesnt contain data.
Example below.
| Business Name | Delivery Date | Value |
| North | 01/01/2020 | £5 |
| East | £10 | |
| South | 02/02/2020 | £15 |
| West | £20 |
Thanks
Solved! Go to Solution.
Hi @eilidh3 ,
Please make sure that [delivery date] is in date format, you can try to create a calculated column or measure.
Measure = IF(NOT(ISBLANK(MAX([Delivery Date]))),MAX('Table'[Value]),0)
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @eilidh3 ,
Please make sure that [delivery date] is in date format, you can try to create a calculated column or measure.
Measure = IF(NOT(ISBLANK(MAX([Delivery Date]))),MAX('Table'[Value]),0)
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |