Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
It seems so elementary I'm almost ashamed to ask.
I want to copy the ActiveCell.Value to a cell on another sheet in the same workbook. The sheet is called Q1Trans. I put in the macro ActiveCell.Copy Destination:=Q1Trans!Range("C101") At Q1Trans in the macro I get the error message "Variable not defined". I have tried putting it in parentheses with and without single or double quotes but again get an error message. If I substitute Sheet6 for Q1Trans, the macro works. Why won't it accept the Sheet name as shown on the Tab ? Stuart |
#2
![]() |
|||
|
|||
![]()
Try:
ActiveCell.Copy Destination:=Worksheets("Q1Trans").Range("C101") or, somewhat less efficiently (IIRC): Activecell.Copy Destination:=Range("Q1Trans!C101") In article , "Stuart Grant" <sagrantatbluewindotch wrote: It seems so elementary I'm almost ashamed to ask. I want to copy the ActiveCell.Value to a cell on another sheet in the same workbook. The sheet is called Q1Trans. I put in the macro ActiveCell.Copy Destination:=Q1Trans!Range("C101") At Q1Trans in the macro I get the error message "Variable not defined". I have tried putting it in parentheses with and without single or double quotes but again get an error message. If I substitute Sheet6 for Q1Trans, the macro works. Why won't it accept the Sheet name as shown on the Tab ? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copying multiple sheets from one book 2 another and undertake spec | Excel Discussion (Misc queries) | |||
sheet names | Excel Discussion (Misc queries) | |||
Sheet names used in formulas | Excel Discussion (Misc queries) | |||
printing sheet names | Excel Worksheet Functions | |||
Graphs and sheet referencing? | Excel Worksheet Functions |