Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a sample table in Power BI that has repeating value for price. The objective is to return the prices for each category without summing-up all the values in row price.
Sample table:
Desired output:
Solved! Go to Solution.
hi @ironboy0418
there are many ways:
you can just plot a table visual with category and price columns. Choose min, max or average for price column.
or
plot a table visual with category columns and a measure like:
measure = MIN(TableName[Price])
or
create a calculated table like:
Table =
ADDCOLUMNS(
VALUES(TableName[Category]),
"Price",
CALCULATE(MIN(TableName[Price]))
)
hi @ironboy0418
there are many ways:
you can just plot a table visual with category and price columns. Choose min, max or average for price column.
or
plot a table visual with category columns and a measure like:
measure = MIN(TableName[Price])
or
create a calculated table like:
Table =
ADDCOLUMNS(
VALUES(TableName[Category]),
"Price",
CALCULATE(MIN(TableName[Price]))
)
Hi,
Why don't you just a table visual, add Category & Price to its Values field and then choose Average or Median in the options for aggregation?
Best Regards,
Alexander
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.