Forum Discussion

Rotemshan's avatar
Rotemshan
Helper I
4 years ago
Solved

Create a gauge

I'm trying to build a Gauge, I managed to divide the data per the requested  The gauge shows rank divided as followed: 0-6 - Red 7-8 - Amber 9-10 - Green   I managed to create the following gr...
  • v-kkf-msft's avatar
    4 years ago

    Hi Rotemshan ,

     

    Please try the Tachometer visual and create the measures:

     

    Range2Start_0-6 = MAX ( 'Response_table APAC'[0-6] )
    Range3Start_0-8 = [Range2Start_0-6] + MAX ( 'Response_table APAC'[7-8] )
    TotalValue_0-10 = MAX ( 'Response_table APAC'[0-10] )

     

    If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
    Best Regards,
    Winniz
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

     

     

     

  • v-kkf-msft's avatar
    v-kkf-msft
    4 years ago

    Hi Rotemshan ,

     

    Please try the following measures:

     

    Range2Start_0-6 = SUM ( 'Response_table APAC'[0-6] )
    Range3Start_0-8 = [Range2Start_0-6] + SUM ( 'Response_table APAC'[7-8] )
    TotalValue_0-10 = [Range3Start_0-8] + SUM ( 'Response_table APAC'[9-10] )

     

    If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
    Best Regards,
    Winniz