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.
See picture.
By using Matrix Power BI sums up the percentage in total amount.
I really want to calculate it instead.
In example : 2435/ 22911 = 10,6% (not 180,9%.)
Any good tips to do this
Solved! Go to Solution.
Hi @KjRog -
Use this measure:
Bidrag % =
CALCULATE ( DIVIDE ( SUM ( Datum[Bidrag] ), SUM ( Datum[Prod] ), 0 ) )
Hope this helps
David
Hi @KjRog -
Use this measure:
Bidrag % =
CALCULATE ( DIVIDE ( SUM ( Datum[Bidrag] ), SUM ( Datum[Prod] ), 0 ) )
Hope this helps
David