Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Syndicate_Admin
Administrator
Administrator

Create a range on percentages

Good morning community,

I have a table with the reviews and the percentages that it supposes for each seller, but I would like to create a range of percentages, where it will indicate how many reviews are between 0% and 30%, how many between 30% and 90% and how many between 90% and 100%.

I accompany an image to better understand what I need.

Rango porcentajes.png

Thank you all very much for your help!

2 REPLIES 2
Syndicate_Admin
Administrator
Administrator

Hello @Syndicate_Admin ,

Thank you very much for your quick response. I really believe that it is the solution, but for some reason he tells me all of them and puts me that, although they have percentages higher than 30%, they are within the range between 0% and 30%.

I think I have to look at other details, such as the relationships or calculations that are involved in the creation of the table.

Thank you very much again for your help.

Best regards

Jose Luis

Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1685854599715.pngJihwan_Kim_1-1685854994542.png

Revisiones measure: = 
SUM( Data[Revisiones] )

 

Percentage: = 
DIVIDE (
    [Revisiones measure:],
    CALCULATE ( [Revisiones measure:], ALLSELECTED ( Data[Cliente] ) )
)

 

Group: = 
VAR _percentage = [Percentage:]
RETURN
    SUMMARIZE (
        FILTER ( 'Group', _percentage >= 'Group'[Min] && _percentage < 'Group'[Max] ),
        'Group'[Group]
    )

 

Clinete count by group: =
COUNTROWS (
    FILTER (
        VALUES ( Data[Cliente] ),
        [Percentage:] >= MAX ( 'Group'[Min] )
            && [Percentage:] < MAX ( 'Group'[Max] )
    )
)

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.