The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance 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.