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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a data like this
I have created a measure count# = distinctcount(#Req)
Now how can i achieve max count # ?
I have tried
calculated(maxx(table,count#),allexcept(table,Item))
i just couldt get the result.
Solved! Go to Solution.
Hi @Anonymous
Assuming the second image you show is a table/matrix visual, you can create a measure like this:
max count # = MAXX ( ADDCOLUMNS ( ALL ( Table1[Item] ), "_Res", [count#] ), [_Res] )
where [count#] is the measure you already have:
count# = DISTINCTCOUNT(Table1[#Req])
and Table1 is the first table you show.
On a different note, please always show your sample data in text-tabular format in addition to (or instead of) the screen captures. That allows people trying to help to readily copy the data and run a quick test, plus it increases the likelihood of your question being answered. Just use 'Copy table' in Power BI and paste it here.
Hi @Anonymous
Assuming the second image you show is a table/matrix visual, you can create a measure like this:
max count # = MAXX ( ADDCOLUMNS ( ALL ( Table1[Item] ), "_Res", [count#] ), [_Res] )
where [count#] is the measure you already have:
count# = DISTINCTCOUNT(Table1[#Req])
and Table1 is the first table you show.
On a different note, please always show your sample data in text-tabular format in addition to (or instead of) the screen captures. That allows people trying to help to readily copy the data and run a quick test, plus it increases the likelihood of your question being answered. Just use 'Copy table' in Power BI and paste it here.
Hi Thanks, it works perfectly!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.