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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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

 


@ 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!:
The Definitive Guide to Power Query (M)

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

 


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.