To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 |
---|---|
77 | |
70 | |
65 | |
50 | |
27 |