B briandrago New member Local time Yesterday, 18:22 Joined Jan 29, 2009 Messages 8 Jan 29, 2009 #1 How can I enter the following expression into a report to calculate a percentage, please view the attached report picture =absolute value((Actuals-FY09 QF2)/(Actuals)) I need to do this for each lane Thanks for your help Attachments reportview.bmp reportview.bmp 92.1 KB · Views: 171
How can I enter the following expression into a report to calculate a percentage, please view the attached report picture =absolute value((Actuals-FY09 QF2)/(Actuals)) I need to do this for each lane Thanks for your help
HiTechCoach Well-known member Local time Yesterday, 20:22 Joined Mar 6, 2006 Messages 4,353 Jan 29, 2009 #2 briandrago said: How can I enter the following expression into a report to calculate a percentage, please view the attached report picture =absolute value((Actuals-FY09 QF2)/(Actuals)) I need to do this for each lane Thanks for your help Click to expand... something like: Code: =ABS(([Actuals]-[FY09 QF2])/([Actuals])) Assuming that you have the fields [Actuals] and [FY09 QF2] in your report's record source. You may need to substitute [Actuals] and [FY09 QF2] for teh actual field names used by the report's query.
briandrago said: How can I enter the following expression into a report to calculate a percentage, please view the attached report picture =absolute value((Actuals-FY09 QF2)/(Actuals)) I need to do this for each lane Thanks for your help Click to expand... something like: Code: =ABS(([Actuals]-[FY09 QF2])/([Actuals])) Assuming that you have the fields [Actuals] and [FY09 QF2] in your report's record source. You may need to substitute [Actuals] and [FY09 QF2] for teh actual field names used by the report's query.