Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe 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.
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.
Solved! Go to Solution.
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
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
User | Count |
---|---|
141 | |
71 | |
70 | |
54 | |
53 |
User | Count |
---|---|
208 | |
95 | |
64 | |
61 | |
57 |