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
I have the following table
And I have a measure on this table:
measure_a = average(Table[flow_mean])
I'd like to normalize the value of this measure using the following formula and create a new measure or column:
normalized = (x-min(x))/(max(x) - min(x)) * 100
Min(x) and Max(x) are the minimum and maximum averages in the `measure_a`.
I'm not sure how to perform this operation, but I'd appreciate any help.
Solved! Go to Solution.
Read about SUMMARIZE, SUMMARIZECOLUMNS and AVERAGEX
Read about SUMMARIZE, SUMMARIZECOLUMNS and AVERAGEX
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.