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.
Hi all,
I have a matrix with product and its category as rows and sales, volume and unit price as columns.
we have a difficulty in showing the unit price when drill up/down as the following picture.
We want to show the price even when drill up/down.
The core problem is that 'unit price' differs from 'sales' and 'volume' in its nature
in that it can't be summed up.
One of my ideas is if we can write a formula in the matrix just like Excel so that
'unit price' column is calculated based on 'sales' and 'volume' whenever it is
drilled up or down, but I don't have any idea to realize this.
Any idea or suggestion are welcome.
Thanks, Shinya
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Sales measure: =
SUM( sales[sales] )
Volume measure: =
SUM( sales[volume] )
Unit price measure: =
DIVIDE( [Sales measure:], [Volume measure:] )
Hi Jihwan,
Thanks for your elaborate reply.
We succeeded based on your advice.
Regards,
Shinya
Hi,
Please check the below picture and the attached pbix file.
Sales measure: =
SUM( sales[sales] )
Volume measure: =
SUM( sales[volume] )
Unit price measure: =
DIVIDE( [Sales measure:], [Volume measure:] )
User | Count |
---|---|
27 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
31 | |
15 | |
12 | |
11 | |
7 |