Forum Discussion

kprasad's avatar
kprasad
Frequent Visitor
9 years ago
Solved

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..??

Click to download test file


End date is of December 2016After selecting End date from january 2017 

 

  • kprasad

     

    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's avatar
    v-haibl-msft
    Icon for Microsoft Employee rankMicrosoft Employee

    kprasad

     

    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