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

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

Reply
ashwingupta
Frequent Visitor

Dynamic categorization based on dynamic value

Hi, 

 

My data contains User Codes and Amounts

 

Amounts range from $0 to $100,000,000. I want to allow the user to categorize each User Code based on a user controlled thresold. I have been trying to work this based on a parameter but based on research on this community I understand it might not be possible.

 

Desired Scenario:

 

Say the user selects the threshold to be $3,000,000. All User Codes with amounts lower than this get labeled "Below Threshold", all above it get labeled "Above Threshold" and all with $0 in the amount column get labeled "Zero". 

And these 3 categories are to be presented in a Pie Chart. So if the user shifts the threshold to $4,000,000, the pie chart should get updated based on the new categories.

 

Screenshot of a sample from the dataset.

 

ashwingupta_0-1705350795065.png

 

Any way to do this using parameter or measure or calculated column? Thanks.

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

vicky__0-1705355142846.png

One way of acheiving this is through numeric range parameter: go to Modeling > New Parameter > Numeric Range to create a slicer. Note - this won't be dynamic, so you'll need to know the range of values for your Amounts. If that isn't really an option, then you can manually do the same thing by creating a calculated table with GENERATESERIES(). 

 

Then you can create measures such as 

Below Threshold Users = COUNTROWS(FILTER(UserCodes, UserCodes[Amount] <= Parameter[Parameter Value]))

 to use in your pie chart.

View solution in original post

1 REPLY 1
vicky_
Super User
Super User

vicky__0-1705355142846.png

One way of acheiving this is through numeric range parameter: go to Modeling > New Parameter > Numeric Range to create a slicer. Note - this won't be dynamic, so you'll need to know the range of values for your Amounts. If that isn't really an option, then you can manually do the same thing by creating a calculated table with GENERATESERIES(). 

 

Then you can create measures such as 

Below Threshold Users = COUNTROWS(FILTER(UserCodes, UserCodes[Amount] <= Parameter[Parameter Value]))

 to use in your pie chart.

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.