Help Creating Excel Formula

J

jamesvh

Hello All,

I'm having a hard time creating a formula to collect data for work. Here is
what I'm looking to do:

To explain I will use cells A1, A2, A3 & A4. To start cells A1 & A4 are
empty and cells A2 & A3 have values. Now when a value is added to cell A1 sum
cells A2 & A3 to cell A4. When the value in cell A1 increses add cell A3 to
the amount currently in cell A4 and so on (see below).

A1 A2 A3 A4
7200 600

A1 A2 A3 A4
1 7200 600 7800

A1 A2 A3 A4
2 7200 600 8400

A1 A2 A3 A4
3 7200 600 9000

I have been racking my head trying to figure this one out, so any and all
help is more then welcome and thanks in advance.


jamesvh
 
M

Mike H

Hi,

=IF(A1<>"",B1+(C1*A1),"")

--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 
J

jamesvh

Mike & Jacob thanks for the help. Those formulas worked except for one thing.
The final amount in cell A4 is not persistent. I have a spin button that
advances cell A1 by 1 up to 18 then resets back to 1. When this happens the
amount in cell A4 resets also.

How can I get the cell A4 amount to be persistent with the formulas that
Mike & Jacob provided?
 
J

jamesvh

Mike & Jacob thanks for the help. Those formulas worked except for one thing.
The final amount in cell A4 is not persistent. I have a spin button that
advances cell A1 by 1 up to 18 then resets back to 1. When this happens the
amount in cell A4 resets also.

How can I get the cell A4 amount to be persistent with the formulas that
Mike & Jacob provided?
 

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