Forum Discussion

adriancho_BI's avatar
adriancho_BI
Regular Visitor
2 years ago
Solved

Create Categories

Hi! I need your help.  I'm trying to create a category measure, where the column I'm referencing has numers from 0 to 1. I'm trying to create a category every 25% like ranges. I cant't manually grou...
  • Jihwan_Kim's avatar
    Jihwan_Kim
    2 years ago

    Hi, if the measure is needed, please check the below picture and the attached pbix file.

     

     

     

    Category % measure = 
    IF (
        HASONEVALUE ( data[id] ),
        SWITCH (
            TRUE (),
            SUM ( data[value] ) = 0, "0%",
            SUM ( data[value] ) <= 0.25, ">0 -25%",
            SUM ( data[value] ) <= 0.5, ">25 -50%",
            SUM ( data[value] ) <= 0.75, ">50 -75%",
            SUM ( data[value] ) <= 1, ">75-100%"
        )
    )