Forum Discussion

Sbaf's avatar
Sbaf
New Member
7 years ago
Solved

KPI for same day close

Hello,   I'm new to power bi and have data for a ticket system in the following format. I'm struggling to create a KPI for same day close which has a target of 75% of all tickets received in any o...
  • v-cherch-msft's avatar
    7 years ago

    Hi Sbaf 

    Please check if below measure could help.It gives the KPI of same day and closed ticket.For example: (40%=2/5)

     

    Measure =
    COUNTROWS ( FILTER ( Data, Data[SameDay] = "yes" && Data[Status] = "Closed" ) )
        / COUNTROWS ( Data )
    

    Regards,