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 All,
I have this DAX code
Column =
VAR Xi = 'Table1'[Performance]
VAR MnX = MIN('Table1'[Performance])
VAR MxX = MAX('Table1'[Performance])
RETURN DIVIDE(Xi-MnX , MxX - MnX)
Trying to implement it into Power Query rather than DAX measure. Can anyone help??
Solved! Go to Solution.
Change the #"Changed Type" reference to the previous step in your query and try this:
([Performance] -
List.Max(Table.Column( #"Changed Type" , "Performance" )))
/
(List.Max(Table.Column( #"Changed Type" , "Performance" )) -
List.Min(Table.Column( #"Changed Type" , "Performance" )))
/ J
Change the #"Changed Type" reference to the previous step in your query and try this:
([Performance] -
List.Max(Table.Column( #"Changed Type" , "Performance" )))
/
(List.Max(Table.Column( #"Changed Type" , "Performance" )) -
List.Min(Table.Column( #"Changed Type" , "Performance" )))
/ J
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!