Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape 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.
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 |
---|---|
89 | |
88 | |
85 | |
81 | |
49 |
User | Count |
---|---|
150 | |
142 | |
112 | |
73 | |
55 |