Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All, Hopefully a simple one!
How do I multiply the result of the below formula by 100?
sum([NPSP])/sum(NPSS)-sum([NPSD])/sum(NPSS)
Thanks in Advance
Hi,
(sum([NPSP])/sum(NPSS)-sum([NPSD])/sum(NPSS))*100
Regards
Hi,
(sum([NPSP])/sum(NPSS)-sum([NPSD])/sum(NPSS))*100
Regards
( sum([NPSP])/sum(NPSS)-sum([NPSD])/sum(NPSS) )* 100
or create a variable vSum = sum([NPSP])/sum(NPSS)-sum([NPSD])/sum(NPSS) and another variable vSumMultiplied = $(vSum) * 100
Thanks, sure I tried that but clearly not. Appreciate the help