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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Finding minimum of 5 measures

Hi

 

I have created 5 measures using DAX

Say a, b, c, d and e.

Now I'm supposed to find a minimum from these 5 measures.

Any Ideas

 

Thanks,

Ganesh

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Result = min(a,min(b,min(c,min(d,e))))

View solution in original post

2 REPLIES 2
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

As you mentioned, you can create a new measure using DAX:

Measure = MIN(MIN(MIN(MIN(MIN([Measure1], [Measure2]), [Measure3]), [Measure3]), [Measure4]), [Measure5])

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Result = min(a,min(b,min(c,min(d,e))))

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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