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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

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