Add a number to a cell

Malcolm torishi

Board Regular
Joined
Apr 26, 2013
Messages
219
In cell A1 is 100, in cell A2 is 2. So what I would like to do in cell A3 would be to add 1 to A1 cell 100 = 101, then in cell A4 add 2 to A1 cell 100 = 102. But if cell A2 was 4. I would like to continue to add 1 a further 2 times so cell A5 would = 103 and cell A6 would = 104.
Thank you
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Try this:

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]In cell A3[/TD]
[TD]=A1+1[/TD]
[/TR]
[TR]
[TD]In cell A4[/TD]
[TD]=A1+2[/TD]
[/TR]
[TR]
[TD]In cell A5[/TD]
[TD]=IF(A2=4,(A1+3),"")[/TD]
[/TR]
[TR]
[TD]In cell A6[/TD]
[TD]=IF(A2=4,(A1+4),"")[/TD]
[/TR]
</tbody>[/TABLE]
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top