Forum Discussion

PowerBI_Yonghu's avatar
PowerBI_Yonghu
Frequent Visitor
7 years ago
Solved

KPI Measure 'goal' word change

I am trying to create a KPI visual where I compare measure from current year to prior year.

Is there anyway I can change the word 'Goal' to someting else ? its not really a goal in my case. Also , the percentage next to goal is little misleading and seems I can not get rid of it. 

 

Untimalty, I want the 'goal' to be a customized word such as 'prior year' and mark the percentage next to current indicator to show difference instead of next to goal.

 

Thanks,

  • dax's avatar
    dax
    7 years ago

    Hi PowerBI_Yonghu,

     

    This is not supported currently, I suggest you could submit the requirement in power-bi-ideas. If the requirement mentioned by customers for many times, the product team may consider to add this feature in the next  version. Your feedback is valuable for us to improve our products and increase the level of service provided.

     

    Best Regards,
    Zoe Zhi

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

3 Replies

  • dax's avatar
    dax
    Icon for Community Support rankCommunity Support

    Hi PowerBI_Yonghu,

     

    If you want to use previous year’s total as goal, you could try to use below measure

    Measure =
    VAR maxy =
        MAX ( 'KPI'[year] )
    RETURN
        CALCULATE (
            SUM ( 'KPI'[amount] ),
            FILTER ( ALL ( 'KPI' ), 'KPI'[year] = maxy - 1 )
        )

    But if you want to change goal text, I think you can’t achieve your goal, this is not supported currently, you could vote in Change KPI "Goal" to another text.

    Best Regards,

    Zoe Zhi

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

    • PowerBI_Yonghu's avatar
      PowerBI_Yonghu
      Frequent Visitor

      Thank you! This is helpful. I would like the % trend to be next to the indicator instead of the comparison year which makes more sense.

      • dax's avatar
        dax
        Icon for Community Support rankCommunity Support

        Hi PowerBI_Yonghu,

         

        This is not supported currently, I suggest you could submit the requirement in power-bi-ideas. If the requirement mentioned by customers for many times, the product team may consider to add this feature in the next  version. Your feedback is valuable for us to improve our products and increase the level of service provided.

         

        Best Regards,
        Zoe Zhi

        If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.