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, 9 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
-
WARNING about Nvidia driver version 572.83 and 4000/5000 series cards
by
Bob99
5 hours, 39 minutes ago -
Creating an Index in Word 365
by
CWBillow
5 hours, 45 minutes ago -
Coming at Word 365 and Table of Contents
by
CWBillow
5 hours, 50 minutes ago -
Windows 11 Insider Preview Build 22635.5170 (23H2) released to BETA
by
joep517
10 hours, 46 minutes ago -
Has the Microsoft Account Sharing Problem Been Fixed?
by
jknauth
14 hours, 12 minutes ago -
W11 24H2 – Susan Bradley
by
G Pickerell
16 hours, 7 minutes ago -
7 tips to get the most out of Windows 11
by
Alex5723
14 hours, 8 minutes ago -
Using Office apps with non-Microsoft cloud services
by
Peter Deegan
7 hours, 30 minutes ago -
I installed Windows 11 24H2
by
Will Fastie
1 hour, 27 minutes ago -
NotifyIcons — Put that System tray to work!
by
Deanna McElveen
19 hours, 34 minutes ago -
Decisions to be made before moving to Windows 11
by
Susan Bradley
2 hours, 37 minutes ago -
Port of Seattle says ransomware breach impacts 90,000 people
by
Nibbled To Death By Ducks
1 day, 3 hours ago -
Looking for personal finance software with budgeting capabilities
by
cellsee6
12 hours, 2 minutes ago -
ATT/Yahoo Secure Mail Key
by
Lil88reb
12 hours, 16 minutes ago -
Devices with apps using sprotect.sys driver might stop responding
by
Alex5723
1 day, 20 hours ago -
Neowin – 20 times computers embarrassed themselves with public BSODs and goofups
by
EP
2 days, 5 hours ago -
Slow Down in Windows 10 performance after March 2025 updates ??
by
arbrich
1 day, 7 hours ago -
Mail from certain domains not delivered to my outlook.com address
by
pumphouse
1 day, 13 hours ago -
Is data that is in OneDrive also taking up space on my computer?
by
WShollis1818
2 days ago -
Nvidia just fixed an AMD Linux bug
by
Alex5723
3 days, 16 hours ago -
50 years and counting
by
Susan Bradley
14 hours, 26 minutes ago -
Fix Bluetooth Device Failed to Delete in Windows Settings
by
Drcard:))
17 hours, 15 minutes ago -
Licensing and pricing updates for on-premises server products coming July 2025
by
Alex5723
4 days, 3 hours ago -
Edge : Deprecating window.external.getHostEnvironmentValue()
by
Alex5723
4 days, 3 hours ago -
Rethinking Extension Data Consent: Clarity, Consistency, and Control
by
Alex5723
4 days, 3 hours ago -
OneNote and MS Word 365
by
CWBillow
4 days, 5 hours ago -
Ultimate Mac Buyers Guide 2025: Which Mac is Right For You?
by
Alex5723
4 days, 5 hours ago -
Intel Unison support ends on Windows 11 in June
by
Alex5723
4 days, 5 hours ago -
April 2025 — still issues with AMD + 24H2
by
Kevin Jones
1 day, 21 hours ago -
Windows 11 Insider Preview build 26200.5518 released to DEV
by
joep517
4 days, 17 hours 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.