Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is it possible to refer to the cell address generated within a cell to
specify a location to paste. The macro below pastes all the data to cell (S27). I need the data to be pasted to the Value in cell (S27) not the cell itself. The formula already in this cell generates a cell address, currently ($s$28) and this will be changed by the user each time the macro is ran. Do I need to enter the word value somewhere??? Sub Macro3() ' ' Macro3 Macro ' Macro recorded 24.02.2005 ' ' Range("C20:O22").Select Selection.COPY Range("S27").Select Selection.PasteSpecial PASTE:=xlValues, Operation:=xlNone, SkipBlanks:= _ False, Transpose:=False Range("N11").Select Application.CutCopyMode = False End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
refer to two cells for location | Excel Discussion (Misc queries) | |||
how to find cells that refer to data in other cells in excel | Excel Discussion (Misc queries) | |||
Using cells to refer to worksheets | Excel Worksheet Functions | |||
To get a lot of charts that refer to different cells | Charts and Charting in Excel | |||
Refer to three cells to populate For next | Excel Programming |