Compounding formula in Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have salary data that I need to age by a specific percentage. I know I can
do this in Excel with the following formula.

=(A1^B1)+C1
(where A1 is the percent to age by, and B1 is the value representing the
difference in two dates used to age the data, and C1 is the original salary
data)

I have all other data sets in place (A, B and C above). The only thing I
need to know is if there is an easy way to incorporate compounding/prime (^)
into an access query?
 
Danielle

If I'm understanding, you have three columns (A, B, C) and wish to calculate
(A^B)+C.

You can do this in a query -- open in design view, add the table with A, B,
C, and create a new field, something like:

NewField: ([A]^)+[C]

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
Thanks Jeff - Perfect, I've tried using prime in the past and for whatever
reason - maybe paren or field types - couldn't get it to work.

- Danielle

Jeff Boyce said:
Danielle

If I'm understanding, you have three columns (A, B, C) and wish to calculate
(A^B)+C.

You can do this in a query -- open in design view, add the table with A, B,
C, and create a new field, something like:

NewField: ([A]^)+[C]

Regards

Jeff Boyce
Microsoft Office/Access MVP

Danielle said:
I have salary data that I need to age by a specific percentage. I know I
can
do this in Excel with the following formula.

=(A1^B1)+C1
(where A1 is the percent to age by, and B1 is the value representing the
difference in two dates used to age the data, and C1 is the original
salary
data)

I have all other data sets in place (A, B and C above). The only thing I
need to know is if there is an easy way to incorporate compounding/prime
(^)
into an access query?
 

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

Back
Top