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
Hello,
I'm trying to create a calculate/measure column which can find the recent date of 4 columns (C1, C2, C3, C4) and avoid empty values. As what I've done in Excel in Power Bi tables (not queries) by finding the recent date of 4 columns (C1, C2, C3, C4) and avoiding empty values.
Thanks in advance.
Solved! Go to Solution.
@HMK273 ,
This Calculated Column should work for you:
MaxDate = MAX([C4], ( MAX( [C3], ( MAX( [C1], [C2] )))))
Regards,
@HMK273 ,
This Calculated Column should work for you:
MaxDate = MAX([C4], ( MAX( [C3], ( MAX( [C1], [C2] )))))
Regards,
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.