Forum Discussion
Filtering Two Categories in a column
- 2 years ago
Hi JohnCarl45 ,
Hi, thanks for the information you have given.
To show the value of the remaining categories in the Account Column, you can use the DAX as follow:
Amount_ = var _t=CALCULATETABLE('Table', NOT('Table'[Account] IN {"Service Income - SC", "Service Income - External"})) RETURN MAXX(_t,[Amount])An attachment for your reference. Hope it helps!
Best regards,
Community Support Team_ Joseph JiIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
JohnCarl45 Please try to create measure like this
Hope this helps
- JohnCarl452 years agoHelper I
Hi sir, good day. Thanks for the reply. I really appreciate it. Can you filter all the categories in the account column except for the two names in the account column, which are "PHIC Contributions-COS" and "Allowances-Medical-COS"? I really want to show all categories, except for two, because in the original data, there were almost 100k rows in Excel, so I want to show all the categories in the account, except for two.