Thread
:
Simple Macro - I think... Copy - Paste on Click
View Single Post
#
2
Posted to microsoft.public.excel.misc
Dave
external usenet poster
Posts: 1,388
Simple Macro - I think... Copy - Paste on Click
Hi,
Try this code into sheet1 in the VBA window:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Sheets("Sheet2").Range("A1") = ActiveCell
End Sub
Regards - Dave.
Reply With Quote
Dave
View Public Profile
Find all posts by Dave