Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Shales
Frequent Visitor

Power BI DAX equivalent of MINIFS in excel

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

2 ACCEPTED SOLUTIONS
themistoklis
Community Champion
Community Champion

@Shales

 

You can tty the following Measure:

MIN_SUBID = CALCULATE(MIN('Table'[Sub_ID ]), ALLEXCEPT('Table', 'Table'[ID]))

 

 

Output:

 

image.png

View solution in original post

As simple as that hey : ) I was massively over thinking it. I have tried to "Accept the Solution" but it keeps saying Authenticity failed. I'll keep trying. Thank you Gav

View solution in original post

2 REPLIES 2
themistoklis
Community Champion
Community Champion

@Shales

 

You can tty the following Measure:

MIN_SUBID = CALCULATE(MIN('Table'[Sub_ID ]), ALLEXCEPT('Table', 'Table'[ID]))

 

 

Output:

 

image.png

As simple as that hey : ) I was massively over thinking it. I have tried to "Accept the Solution" but it keeps saying Authenticity failed. I'll keep trying. Thank you Gav

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors