Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Rob
Try: Sub CopyIt() Dim CTo As Range Dim CRng As String CRng = Sheets("Entry Sheet").Range("B20").Value Set CTo = Sheets(Left(CRng, InStr(1, CRng, "!") - 1)). _ Range(Right(CRng, Len(CRng) - InStr(1, CRng, "!"))) Sheets("Entry Sheet").Range("B27:B33").Copy CTo.PasteSpecial Paste:=xlPasteValues Application.CutCopyMode = False End Sub Regards Rowan WightRob wrote: As I said in my last post, the problem was solved. Unfortunately that was only with my simplfied example. In my actual workbook, the values in the range B27:B33 are fed in from a calculator sheet. Rowan's code is copying the actual cell data, which is now setting up a link to the calculator sheet. What I need is a "Paste Special" = Value, rather that a simple "Paste", is this possible? I am new to VBA coding, so all help is appreciated. Rob |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy/Paste Formula-dropping 1st cell address | Excel Discussion (Misc queries) | |||
Need code to copy and paste based on cell address. | Excel Discussion (Misc queries) | |||
Copy/Paste Hyperlink Address | Excel Discussion (Misc queries) | |||
How can I copy/paste a hyperlink address without the link? | Excel Discussion (Misc queries) | |||
Copy & Paste Hyperlink address into cell | Excel Programming |