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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
bryanshaw46
Resolver I
Resolver I

Is there a way to allow the user to select the min and max of a value

I have a table of invoice totals and I would like for the users to be able to pick a values range for them.  For instance, I only want to see invoices 1 million and above, or any invoice that is below zero.

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

Lots of different ways of doing this, here are a couple.

 

1. Add the invoice amount to the filters area and teach the users how to use filters.

2. Add a calculated column that creates "buckets" that you care about, such as:

 

IF([InvoiceAmount]>1000000,"> 1 million",IF([InvoiceAmount]<0,"Negative","Meh"))

Now you have a column you can create a slicer on that would have the values:

> 1 million

Meh

Negative

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

Lots of different ways of doing this, here are a couple.

 

1. Add the invoice amount to the filters area and teach the users how to use filters.

2. Add a calculated column that creates "buckets" that you care about, such as:

 

IF([InvoiceAmount]>1000000,"> 1 million",IF([InvoiceAmount]<0,"Negative","Meh"))

Now you have a column you can create a slicer on that would have the values:

> 1 million

Meh

Negative

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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