Forum Discussion
Anonymous
4 years agoNot applicable
Calculated Column - True False based on Order value
Hello Community - I know this should be easy, but...
I have an orders table out of our ERP system. I need to create a "flag" that allows the user to have a slicer with the two options: Over $75k, or Equal/Less $75k.
In other words, imagine you have the orders table, and you quickly want to filter down to all Orders with a total value over 75,000 dollars...or....select all orders with a value below 75,000.
And the key is that this should be at the Order level (not at the line level).
Thanks for any help!
Anonymous
This formula should work:
OVER 75K = IF('Table'[Order Value]>75000,"True","False")Or you can use this formula:OVER 75K = 'Table'[Order Value]>75000If I answered your question, please mark it as a solution to help other members find it more quickly.
3 Replies
- jppv20Solution Sage
Hi Anonymous ,
Can you provide some example data and expected output?
- AnonymousNot applicable
- jppv20Solution Sage
Anonymous
This formula should work:
OVER 75K = IF('Table'[Order Value]>75000,"True","False")Or you can use this formula:OVER 75K = 'Table'[Order Value]>75000If I answered your question, please mark it as a solution to help other members find it more quickly.