Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi I need a DAX formula to calculate min value (time in this ex) from four different columns that are in different tables.
The problem is when the MIN measure returns blank, so simple min(min ();min()) is not working. Please help!
Solved! Go to Solution.
Hi @blazko,
Based on my test, the formula should work in your scenario. ![]()
Measure =
MAXX (
UNION (
SELECTCOLUMNS ( Table1, "Date", Table1[Date1] ),
SELECTCOLUMNS ( Table2, "Date", Table2[Date2] ),
SELECTCOLUMNS ( Table3, "Date", Table3[Date3] ),
SELECTCOLUMNS ( Table4, "Date", Table4[Date4] )
),
[Date]
)
Remark: just replace the bold with your real table name and column name.
Regards
Hi @blazko,
Based on my test, the formula should work in your scenario. ![]()
Measure =
MAXX (
UNION (
SELECTCOLUMNS ( Table1, "Date", Table1[Date1] ),
SELECTCOLUMNS ( Table2, "Date", Table2[Date2] ),
SELECTCOLUMNS ( Table3, "Date", Table3[Date3] ),
SELECTCOLUMNS ( Table4, "Date", Table4[Date4] )
),
[Date]
)
Remark: just replace the bold with your real table name and column name.
Regards
Thank You! 🙂
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.