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

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

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
November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.