Reputation: 478
I have a matrix in which there are companies, sale value, and return value.
I want to calculate that what percentage of the return value is from sales value
The sales value can be negative because there can be no sales.
How can I do it?
Any help would be highly appreciated.
Upvotes: 0
Views: 2238
Reputation: 1515
You do this with measure
Percentage = sum(Table[Return value])/sum(Table[SALES VALUE])
Then select measure and click on % symbol in Measure tools. Numbers will be displayed in %.
Upvotes: 1