Forum Discussion
redgun24
6 years agoNew Member
DAX Help - Calculating Count at Subtotal Level
Hi all, New to DAX. I'm trying to only show conflicts (1, 2, 3, 4, 5) in the below visualization that have more that one entitlement (AP Invoice Entry, AP Supplier Master, etc.). For the example ...
Nathaniel_C
6 years agoCommunity Champion
Hi redgun24 ,
If I understand, you want to filter the visual. Try this measure:
Show only = If(MAX(Conflicts[Counter])>1,MAX(Conflicts[Counter]),BLANK())my table is Conflicts.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
- redgun246 years agoNew Member
Hey Nathaniel,
Thank you for the reply. I tried the formula, assuming that your Counter is my Count of Entitlements but was getting the below error. Am I missing something?