Forum Discussion
KPI Visual does not work properly for new year dates.
Hi all,
I am working on a dashboard, in which I am trying to implement a KPI visual for current period vs previous period values. The visual works correct for the end date upto 31st December 2016. But when I change my end date to any date from january 2017 KPI visual starts me showing values from 1st january to the selected end date from january 2017.Here I am attaching the
screenshots from the test file.So can any one please help me to find any solution on this..??
End date is of December 2016After selecting End date from january 2017
That’s just how the KPI visual works. In your case, you can create following two measures to replace the Current sessions and Previous sessions.
Current = CALCULATE ( SUM ( Test[Current sessions] ), ALLSELECTED ( Test[Date] ) )
Previous = CALCULATE ( SUM ( Test[Previouse sessions] ), ALLSELECTED ( Test[Date] ) )
Best Regards,
Herbert
2 Replies
- v-haibl-msft
Microsoft Employee
That’s just how the KPI visual works. In your case, you can create following two measures to replace the Current sessions and Previous sessions.
Current = CALCULATE ( SUM ( Test[Current sessions] ), ALLSELECTED ( Test[Date] ) )
Previous = CALCULATE ( SUM ( Test[Previouse sessions] ), ALLSELECTED ( Test[Date] ) )
Best Regards,
Herbert
- kprasadFrequent Visitor