Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I am trying to put the date as a KPI. Basically if a filter is on a date, then the date should be shown as a big text in the dashboard header. Unfortunately, it shows a #0.00 whenever i filter on the date.
This is the formula:
Date filter = IF (
HASONEVALUE ( DimDate[Date] );
VALUES(DimDate[Date]) ;
"YTD Cumulated"
)
Cheers
Solved! Go to Solution.
Hi @alxmti,
The question you are getting is that you have two format in your final result so the KPI only returns one type in this case Number you need to change your formula to something like this:
Date filter =
IF (
HASONEVALUE ( DimDate[DAte] );
FORMAT ( VALUES ( DimDate[DAte] ); "dd-mm-yyyy" );
"YTD Cumulated"
)Format the date part as best fits your needs
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @alxmti,
The question you are getting is that you have two format in your final result so the KPI only returns one type in this case Number you need to change your formula to something like this:
Date filter =
IF (
HASONEVALUE ( DimDate[DAte] );
FORMAT ( VALUES ( DimDate[DAte] ); "dd-mm-yyyy" );
"YTD Cumulated"
)Format the date part as best fits your needs
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Portuguêsthanks! something as easy as FORMAT 🙂
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 27 |
| User | Count |
|---|---|
| 135 | |
| 102 | |
| 67 | |
| 65 | |
| 56 |