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! Learn more
Hi,
In Power Query I have a table with 2 date columns. I use Table.TransformColumnTypes(#"Inserted Maximum",{{"Date1", type date}, {"Date2", type date}, {"Maximum", type date}}) in order to obtain the max of the 2 date values. This seems to work in Power Query and I see the max of the 2 dates for each row in the table. When I then apply this to Power BI, the max date then applies to the maximum of the 2 columns in their entirety and not for each row. If I go back to "Transform Data" the maximum dates are definitely for each row, but this is lost when applying to Power BI.
Any ideas what I am doing wrong and/or how to obtain the max date for each row from 2 columns?
Thanks in advance,
Dowsey
Solved! Go to Solution.
in DAX, it is like:
Column = MAX( [Date1], [Date2] )
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.