Forum Discussion
shantupm5
3 years agoHelper III
Volume Split by %
Hi Team I have below global volumes and the region wise Volume share which is in %. Please can you help me with the formula for volume disturbution based on % split mentioned ? Total Glob...
DataVitalizer
3 years agoSuper User
Could you provide a sample of the result you are trying to achieve
Did it work ? 👌 Mark it as a solution to help spreading knowledge 👉 A kudos would be appreciated
shantupm5
3 years agoHelper III
- DataVitalizer3 years agoSuper User
Hi shantupm5
Do you have APAC AMR and EMEA stored in the same column? to suggest the adequate formula.
Did it work ? Mark it as a solution to help spreading knowledge
Was this exchange helping? A kudos 👍 would be appreciated- shantupm53 years agoHelper III
The break up is quite clear. It is in other columns.
The global volume comes from out come of measure.
- DataVitalizer3 years agoSuper User
If your table looks like this
1. I suggest you create a new calculated table using this code
NewTable = UNION(
SELECTCOLUMNS('OriginalTable', "Attribute", "AMR", "Value",'OriginalTable'[AMR]),
SELECTCOLUMNS('OriginalTable', "Attribute", "APAC", "Value",'OriginalTable'[APAC]),
SELECTCOLUMNS('OriginalTable', "Attribute", "EMEA", "Value",'OriginalTable'[EMEA]))2. Within this table create a new measureValues = SUM('NewTable'[Value])*SUM('OriginalTable'[Total Global Volumes])
the resut will look like this
Did it work ? Mark it as a solution to help spreading knowledge
Was this exchange helpful? A kudos 👍 would be appreciated