Add a number to a cell as you type in data to the cell

Ralph_Belvedere

New Member
Joined
Jan 26, 2005
Messages
1
I want to be able to type in a value into a cell and then have it add
a same value in each cell

So if C3 value is 55 and in cells D3 to L3 I start adding numbers
I want it to add 55 to each cell

So if I type 400 in D3 I want it to add 55 and so the value would automatically change to 455 when I shift to the next cell D4

So if I type 440 in D4 I want it to add 55 and so the value would automatically change to 495 when I shift to the next cell D5

I keep get the circular error message or when I type in the value
it wipes out the formula.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Welcome to the Board. :)

Using vba code, you might be able to get what you want:

Code:
Sub test()
    Dim myi As Long
    Dim i As Integer
    For i = 4 To 12
        Cells(3, i).Value = Cells(3, i).Value + Cells(3, 3).Value
    Next i
End Sub
This could be adjusted to use in a workbook module for use with an update button, or in worksheet module to update automatically.
 
Upvote 0

Forum statistics

Threads
1,215,514
Messages
6,125,272
Members
449,219
Latest member
daynle

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