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 have data in the below format,
Cost
100
2900
300
I need to create a column in such a way that, it should tell me the minimum, maximum and average of the cost column.
eg;
Cost Custom_Column2
100 Minimum
2900 Maximum
300
How can I achieve this?
Solved! Go to Solution.
Hi @Anonymous ,
Not sure if I understand the question correctly, but you can try this:
Hi @Anonymous ,
Not sure if I understand the question correctly, but you can try this:
Hi @Anonymous
You sure you need this in a column, rather than using measures?
For example
Minimum = MIN('Table'[Cost])
Maximum = MAX('Table'[Cost])
Average = AVERAGE('Table'[Cost])
Regards
Phil
Proud to be a Super User!
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.