Forum Discussion
argnist
8 years agoFrequent Visitor
Divide summarized column by another summarized column
Hi all, does anyone know the way to divide one summarized column over to another summarized column? When I try something like SUM (Total Sales) / SUM (Items Sold) it calculates it for each it...
vcastello
8 years agoResolver III
Hi argnist
Try the following:
1.- Click New Measure.
2.- Enter
Average Per Item = DIVIDE([Total Sales], [Items Sold])
3.- Put that new measure in the matrix
Hope That Helps
Vicente
- Anonymous8 years agoNot applicable
Hi I have also faced the same issue but could not understand your solution but i think you have solved the problem which is similar like mine. Could you please hel me out to calculate to summarized columns. I have attached screenshot and pbix file for the same. THank you so much
- vcastello8 years agoResolver III
Hi Kulchandra,
Try ....
Measure1 = DIVIDE(DIVIDE([Count Of Badges ID],[Duration Seconds]),60)Hope That helps
Vicente