Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello everyone!
How can I get the average for each row in this table?
i.e: What is the average for the toys in store 1?
Company | Toy #1 | Toy #2 | Toy #3 |
Store #1 | $1.5 | $2.25 | $3.15 |
Store #2 | $5.25 | $4.25 | $3.75 |
Store #3 | $6.25 | $5.5 | $4.25 |
Solved! Go to Solution.
First thing would be to unpivot the data in the query editor, and rename the attribute column to ToyNumber. You can then just write a simple DAX measure like
Avg Measure = average(TableName[Value])
Then just make a table visual with the ToyNumber and this measure.
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@Anonymous , unpivot this table then use it
First thing would be to unpivot the data in the query editor, and rename the attribute column to ToyNumber. You can then just write a simple DAX measure like
Avg Measure = average(TableName[Value])
Then just make a table visual with the ToyNumber and this measure.
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |