Forum Discussion
alxmti
9 years agoFrequent Visitor
Date as KPI
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 fi...
- 9 years ago
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
MFelix
9 years agoSuper User
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
alxmti
9 years agoFrequent Visitor
thanks! something as easy as FORMAT :)