EXCEL SHEET FORMULA

Closed
roula - Oct 22, 2009 at 08:55 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Oct 22, 2009 at 10:38 PM
Hello,

how can i change the name in colone A automaticly if i changed from colone R ?
exemple: if i put ROULA in colone A and go and put NANA in colone R i nbeed ROULA to change automaticly to NANA

REGARDS,

1 response

venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 811
Oct 22, 2009 at 10:38 PM
you mean whatever you have entered in A1 whne R1 is entered that value will be entered in A1 also

right click the sheet tab click viewcode and copy this event code


Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address <> "$R$1" Then Exit Sub
Range("A1") = Target
End Sub


if this is confirm
0