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.
Hi,
I only discovered the MINIFS function in Excel today, and instantly wondered if there was a Power BI DAX equivalent.
I have a quite basic excel formula of;
=MINIFS(A:A,B:B,B2)
Lets say A:A = Sub_ID & B:B = ID
I am trying to find the Min Sub_ID when there are more than 1 count of ID's
If there a DAX someone can help me with?
Thank you so much.
Gav
Solved! Go to Solution.
You can tty the following Measure:
MIN_SUBID = CALCULATE(MIN('Table'[Sub_ID ]), ALLEXCEPT('Table', 'Table'[ID]))
Output:
You can tty the following Measure:
MIN_SUBID = CALCULATE(MIN('Table'[Sub_ID ]), ALLEXCEPT('Table', 'Table'[ID]))
Output:
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.