Calculating % based on negative divisor

A

Alisheba

I created a report that calculates current balances to ending balance for
previous month and returns a percentage, my formula is as follows:

=([Variance]/[61+ Last Month])

It works except when [61+ Last Month] is negative it returns a negative %.
For example:
61+ Last Month = -441.60
Variance= $12,496.50

Formula returns -2829.82%

It should be a positive number meaning that my balance increased.

Please advise

Thank You
 
B

bcap

You seem to think that Access is doing something wrong, but really it's just
simple arithmetic.

4/2 = 2

4/-2 = -2

Presumably this will give you the answer you want:

=([Variance]/Abs([61+ Last Month]))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top