pile-it Mark
Board Regular
- Joined
- Jan 10, 2006
- Messages
- 125
hello,
this code copies a master sheet and turns several cells from formula to value.
i have since needed to add a few more cells to "copy/paste as value" how do i add AL11 to paste as value?
this code copies a master sheet and turns several cells from formula to value.
i have since needed to add a few more cells to "copy/paste as value" how do i add AL11 to paste as value?
Code:
Sub SheetCopy347()
'
' SheetCopy347 Macro
'
'
Sheets("Master 347").Select
Sheets("Master 347").Copy Before:=Sheets(4)
Range("E12").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("R5").Select
Application.CutCopyMode = False
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub