Forum Discussion
Moniek
4 years agoResolver I
Filter
Hi, I have a table and I want to calculate a % of a value, example, I want % of the total " Omzet" . In my case "Omzet" is 600 = 100%, I want to make a meassure, "Bedrag / Omzet * 100%". There is somtething to do with filter but I don't find the right one yet. Example, "Belastingen" = -400 / 600 = -66,66% instead of 0,00%. Thanks!!
6 Replies
- stefani_vilevaResolver II
Hello,
You can just create a measure:
Measure = DIVIDE(SUM(Bedrag), SUM(Omzet))and then just convert this to % and thats it.
I hope this solves your problem.
Kind regards,Stefani
- MoniekResolver I
stefani_vileva Thanks but unfortunately that's not the right measure, because "Bedrag" and "Omzet" are already measures.
- stefani_vilevaResolver II
Can you try with simply using Divide([Bedrag], [Omzet]) ? Or if this is not working, please share your file.
- NickolajJessenSolution Sage
Does this work?