Can someone help me please. I have a spreadsheet that I want to update with ongoing price increases. When I open the worksheet I want to be able to make a change to, let’s say B2 and have that change added to the formula that resides in F2(the formula in F2 = $D4 *E4), is there anyway to do this without inserting another column? I apperciate any help anyone is able to provide.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Updating a Value in a Cell (2000)
Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » Updating a Value in a Cell (2000)
- This topic has 24 replies, 4 voices, and was last updated 20 years, 11 months ago.
Viewing 1 reply threadAuthorReplies-
WSHansV
AskWoody Lounger -
WStmac
AskWoody LoungerJuly 15, 2004 at 5:51 pm #851783First I want to thank you for responding Hans. Thank you so much.. This is what I’m trying to do.
Cell F2(I really should say Column F), currently has the formula D * E. which works fine for now, but when there’s a pricing increase or decrease in column B, I want to be able to add the Increase which is contain in column B to be added to the formula in Column F but only if colmun b changes. I guess what i’m saying is, Column F maintains the current formula & only updates the value when column B changes. Does that make sense? -
WSHansV
AskWoody LoungerJuly 15, 2004 at 5:57 pm #851785I’m sorry, I must be dense tonight, for I still don’t understand. The outcome of a formula in Excel only changes if one of the parts changes. So if F2 contains =D2*E2+B2 (or something similar), the value of F2 will only change if B2, D2 or E2 changes. If F2 contains =D2*E2, the value of F2 is the product of D2 and E2, there is no way to add anything to it without changing the formula.
-
WStmac
AskWoody LoungerJuly 15, 2004 at 6:16 pm #851797You’re not being dense this evening :-), I think it might be how I’m explaining it. I’ve attached a copy of the worksheet as it exists today. What I’m trying to incorporate going forward is, if there’s a change to the value in column B then add that change to the formula in F, but only if there’s a change/update.
Thanks
-
WSasimpkins
AskWoody Lounger -
WSasimpkins
AskWoody Lounger -
WSHansV
AskWoody LoungerJuly 15, 2004 at 6:31 pm #851814 -
WStmac
AskWoody Lounger -
WSHansV
AskWoody LoungerJuly 15, 2004 at 6:52 pm #851822That is ugly! This cannot be done without changing the formula, for the formula says ‘multiply D4 and E4’, no more and no less. The following event procedure will adjust the formula, but it will become very unwieldy over time, and there is no undo if the user makes a mistake!
Right click the sheet tab.
Select View Code.
Copy the following code into the module:Private Sub Worksheet_Change(ByVal Target As Range)
Dim oCell As Range
Application.EnableEvents = False
If Not Intersect(Target, Range(“B4:B18”)) Is Nothing Then
For Each oCell In Intersect(Target, Range(“B4:B18”))
oCell.Copy
oCell.Offset(0, 4).PasteSpecial xlPasteValuesAndNumberFormats, xlPasteSpecialOperationAdd
Next oCell
End If
Application.EnableEvents = True
Application.CutCopyMode = False
Set oCell = Nothing
End SubSwitch back to Excel.
Save the workbook.
Change a cell in B4:B18 to test the effect – look at the corresponding cell in column F.I don’t like this method at all, but the alternative is to use a separate column to accumulate the changes, and you didn’t want that either.
-
WStmac
AskWoody Lounger -
WSHansV
AskWoody LoungerJuly 15, 2004 at 7:21 pm #851838 -
WStmac
AskWoody LoungerJuly 15, 2004 at 7:52 pm #851852*sigh* so true. Not to add fuel to the already flaming fire but say for instance the information contact in columns E & F (representing bdl & sq) where across several columns but representing different regions. The formula wouldn’t work across the broad because the price increase doesn’t happen across the regions, it’s selective. What a headache. it looks like this workbook will have to be maintained in a data entry fashion or they need to automated this updates asap.
-
WSGfamily
AskWoody Lounger -
WSGfamily
AskWoody Lounger -
WStmac
AskWoody LoungerJuly 15, 2004 at 7:52 pm #851853*sigh* so true. Not to add fuel to the already flaming fire but say for instance the information contact in columns E & F (representing bdl & sq) where across several columns but representing different regions. The formula wouldn’t work across the broad because the price increase doesn’t happen across the regions, it’s selective. What a headache. it looks like this workbook will have to be maintained in a data entry fashion or they need to automated this updates asap.
-
WSHansV
AskWoody LoungerJuly 15, 2004 at 7:21 pm #851839 -
WStmac
AskWoody Lounger -
WSHansV
AskWoody LoungerJuly 15, 2004 at 6:52 pm #851823That is ugly! This cannot be done without changing the formula, for the formula says ‘multiply D4 and E4’, no more and no less. The following event procedure will adjust the formula, but it will become very unwieldy over time, and there is no undo if the user makes a mistake!
Right click the sheet tab.
Select View Code.
Copy the following code into the module:Private Sub Worksheet_Change(ByVal Target As Range)
Dim oCell As Range
Application.EnableEvents = False
If Not Intersect(Target, Range(“B4:B18”)) Is Nothing Then
For Each oCell In Intersect(Target, Range(“B4:B18”))
oCell.Copy
oCell.Offset(0, 4).PasteSpecial xlPasteValuesAndNumberFormats, xlPasteSpecialOperationAdd
Next oCell
End If
Application.EnableEvents = True
Application.CutCopyMode = False
Set oCell = Nothing
End SubSwitch back to Excel.
Save the workbook.
Change a cell in B4:B18 to test the effect – look at the corresponding cell in column F.I don’t like this method at all, but the alternative is to use a separate column to accumulate the changes, and you didn’t want that either.
-
WStmac
AskWoody Lounger -
WSHansV
AskWoody LoungerJuly 15, 2004 at 6:31 pm #851815
-
-
-
WStmac
AskWoody LoungerJuly 15, 2004 at 6:16 pm #851798You’re not being dense this evening :-), I think it might be how I’m explaining it. I’ve attached a copy of the worksheet as it exists today. What I’m trying to incorporate going forward is, if there’s a change to the value in column B then add that change to the formula in F, but only if there’s a change/update.
Thanks
-
-
-
WSHansV
AskWoody LoungerJuly 15, 2004 at 5:57 pm #851786I’m sorry, I must be dense tonight, for I still don’t understand. The outcome of a formula in Excel only changes if one of the parts changes. So if F2 contains =D2*E2+B2 (or something similar), the value of F2 will only change if B2, D2 or E2 changes. If F2 contains =D2*E2, the value of F2 is the product of D2 and E2, there is no way to add anything to it without changing the formula.
WStmac
AskWoody LoungerJuly 15, 2004 at 5:51 pm #851784First I want to thank you for responding Hans. Thank you so much.. This is what I’m trying to do.
Cell F2(I really should say Column F), currently has the formula D * E. which works fine for now, but when there’s a pricing increase or decrease in column B, I want to be able to add the Increase which is contain in column B to be added to the formula in Column F but only if colmun b changes. I guess what i’m saying is, Column F maintains the current formula & only updates the value when column B changes. Does that make sense?WSHansV
AskWoody LoungerViewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Win 11 24H2 June 2025 Update breaks WIFI
by
dportenlanger
1 hour, 31 minutes ago -
Update from WinPro 10 v. 1511 on T460p?
by
CatoRenasci
1 hour, 29 minutes ago -
System Restore and Updates Paused
by
veteran
4 hours, 2 minutes ago -
Windows 10/11 clock app
by
Kathy Stevens
18 minutes ago -
Turn off right-click draw
by
Charles Billow
7 hours, 16 minutes ago -
Introducing ChromeOS M137 to The Stable Channel
by
Alex5723
10 hours, 47 minutes ago -
Brian Wilson (The Beach Boys) R.I.P
by
Alex5723
11 hours, 58 minutes ago -
Master patch listing for June 10, 2025
by
Susan Bradley
12 hours, 23 minutes ago -
Suggestions for New All in One Printer and a Photo Printer Windows 10
by
Win7and10
4 hours, 25 minutes ago -
Purchasing New Printer. Uninstall old Printer Software First?
by
Win7and10
18 hours, 25 minutes ago -
KB5060842 Issue (Minor)
by
AC641
22 hours, 58 minutes ago -
EchoLeak : Zero Click M365 Copilot leak sensitive information
by
Alex5723
1 day, 1 hour ago -
24H2 may not be offered June updates
by
Susan Bradley
8 minutes ago -
Acronis : Tracking Chaos RAT’s evolution (Windows, Linux)
by
Alex5723
1 day, 14 hours ago -
June 2025 updates are out
by
Susan Bradley
2 hours, 22 minutes ago -
Mozilla shutting Deep Fake Detector
by
Alex5723
2 days, 4 hours ago -
Windows-Maintenance-Tool (.bat)
by
Alex5723
1 day, 14 hours ago -
Windows 11 Insider Preview build 26200.5641 released to DEV
by
joep517
2 days, 7 hours ago -
Windows 11 Insider Preview build 26120.4250 (24H2) released to BETA
by
joep517
2 days, 7 hours ago -
Install Office 365 Outlook classic on new Win11 machine
by
WSrcull999
2 days, 7 hours ago -
win 10 to win 11 with cpu/mb replacement
by
aquatarkus
1 day, 23 hours ago -
re-install Windows Security
by
CWBillow
2 days, 10 hours ago -
WWDC 2025 Recap: All of Apple’s NEW Features in 10 Minutes!
by
Alex5723
2 days, 14 hours ago -
macOS Tahoe 26
by
Alex5723
2 days, 8 hours ago -
Migrating from win10 to win11, instructions coming?
by
astro46
19 hours, 41 minutes ago -
Device Eligibility for Apple 2026 Operating Systems due this Fall
by
PKCano
1 day, 23 hours ago -
Recommended watching : Mountainhead movie
by
Alex5723
1 day, 23 hours ago -
End of support for Windows 10
by
Old enough to know better
3 hours, 52 minutes ago -
What goes on inside an LLM
by
Michael Covington
1 day, 17 hours ago -
The risk of remote access
by
Susan Bradley
13 hours, 38 minutes ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.