The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 |
---|---|
14 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
28 | |
19 | |
14 | |
8 | |
5 |