Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello community, I need to create a measure for a card that shows me the number of the 'Aging' column that is repeated the most, filtering another column called 'Active/Inactive' = "Inactive Portfolio"
I tried this.
Solved! Go to Solution.
Hi, @jfern78
You can try the following methods.
Measure =
CALCULATE ( MAX ( 'Table'[AGING Meses] ),
FILTER ( ALL ( 'Table' ),
[Count] = CALCULATE ( MAX ( 'Table'[Count] ), ALL ( 'Table' ) )
)
)
Please refer to the attachment.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @jfern78
You can try the following methods.
Measure =
CALCULATE ( MAX ( 'Table'[AGING Meses] ),
FILTER ( ALL ( 'Table' ),
[Count] = CALCULATE ( MAX ( 'Table'[Count] ), ALL ( 'Table' ) )
)
)
Please refer to the attachment.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
any suggest?
It doesn't work for me, what could be wrong?
Measure:
It returns the value 12 and it should return the value 2.
I use a calculate/counta.
User | Count |
---|---|
15 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |