Sending values?

bobmc

Board Regular
Joined
Mar 13, 2002
Messages
142
Is there a way to SEND a value from one cell to another, overriding anything that may have been entered into that cell?
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Not to sure what you mean, but entering =A1 into cell B1 will show always show the value in A1 (or a zero if A1 is empty).
This message was edited by Mudface on 2002-03-14 12:08
 
Upvote 0
Open VBA editor then double click on the Sheet that you want to apply transferring cell values. And select the Worksheet on module and Change event then write this code there.

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Address = "$A$1" Then Range("A2").Value = Target.Value
End Sub

to change A2 cell value to A1 value when A1 changed.

regards
suat
This message was edited by smozgur on 2002-03-14 12:12
 
Upvote 0

Forum statistics

Threads
1,214,902
Messages
6,122,161
Members
449,069
Latest member
msilva74

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