Forum Discussion
Percentage Change Query
- 7 years ago
Hi I-Jay-I ,
I suggest you to create a measure of Recovery Percentage, then it will work. The following is my sample you can have a try.
The calculated column of Standard Rated Net and Reporting Month are both used your formula.
Standard Rated Net = IF('Sheet1'[Rate]="SR",'Sheet1'[Net],0) Reporting Month = EOMONTH(Sheet1[Date],0)Create a measure.
Recovery Percentage = DIVIDE(SUM(Sheet1[Standard Rated Net]),SUM(Sheet1[Net]))
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi I-Jay-I ,
I suggest you to create a measure of Recovery Percentage, then it will work. The following is my sample you can have a try.
The calculated column of Standard Rated Net and Reporting Month are both used your formula.
Standard Rated Net = IF('Sheet1'[Rate]="SR",'Sheet1'[Net],0)
Reporting Month = EOMONTH(Sheet1[Date],0)
Create a measure.
Recovery Percentage = DIVIDE(SUM(Sheet1[Standard Rated Net]),SUM(Sheet1[Net]))
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Xue Ding,
Thanks for this! It appears I was using new column instead of new measure.
Thanks!
Jay