Can we changing the cells of another sheet once the cells value of a sheet is changed?

holycome99

New Member
Joined
Nov 16, 2020
Messages
15
Office Version
  1. 365
Platform
  1. Windows
What i want to ask is that is it possible that once the cells (A1) value of sheet(1) changed, the cells (C4) value of sheet(2) will be updated immediately by using VBA?
I have assigned name for both cells, so it will be better if it is possible to use the name of the cells instead of range or Row and Column.
Thanks a lot!!!!
 
Last edited by a moderator:

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
You could do this with VBA, or a very simple formula.

In Sheet 2 cell C4: =Sheet1!A1
 
Upvote 0
In VBA, it would look something like this:
Worksheets("Sheet1").Range("A1").Copy Worksheets("Sheet2").Range("C4")
and would go in the Sheet2 object so that it will execute as soon as you navigate to Sheet2...so this would not be immediate.
 
Upvote 0

Forum statistics

Threads
1,215,062
Messages
6,122,923
Members
449,094
Latest member
teemeren

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