Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm coding a Worksheet Change event to trigger when a cell changes. It works
well so far. The problem is I want to copy a cell from this worksheet to another worksheet. When I specify the other worksheet, the cell gets copied wherever the cursor was positioned in the target worksheet - not in the cell I want. here is the copy code: Range("BC3").Select Application.CutCopyMode = False Selection.Copy Sheets("Test1").Select Range("Test1!B3").Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False The worksheet Change event is in the worksheet code - so this may be the problem. Is it possible to do this? Thanks for any help on this. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Worksheet Change Event | Excel Discussion (Misc queries) | |||
Worksheet change Event | Excel Worksheet Functions | |||
Cancel sheet change event | Charts and Charting in Excel | |||
change event on specific cell rather than worksheet | Excel Discussion (Misc queries) | |||
Worksheet Row Change event | Excel Discussion (Misc queries) |