Forum Discussion
datadelta
2 years agoHelper III
Divide a row value by another row value
I am sorry but I have tried every way possible to get this to work before coming here. I have have a data set with rows and I need to divide each row by another row within the set. Store ...
- 2 years ago
Penetration%Measure =
VAR _HasSales = SUM(Table[Has Sales] --or measure already created
VAR _TotalStores = SUM(Table[Total Stores Avail]--or measure already created
RETURN
DIVIDE(_HasSales , _TotalStores )
then set format to % - 2 years ago
Thank you.
I suddenty realized I was overcomplicating the problem.
= SUM('AllStores'[Has Sales])/(95)
ALLUREAN
2 years agoSolution Sage
Penetration%Measure =
VAR _HasSales = SUM(Table[Has Sales] --or measure already created
VAR _TotalStores = SUM(Table[Total Stores Avail]--or measure already created
RETURN
DIVIDE(_HasSales , _TotalStores )
then set format to %
- datadelta2 years agoHelper III
Thank you.
I suddenty realized I was overcomplicating the problem.
= SUM('AllStores'[Has Sales])/(95)