Guest_imported
New member
- Jan 1, 1970
- 0
Help please
The following code has an error in the paste function can anyone fix it cheers.
Sub FindSub()
msheet = ActiveSheet.Name
Select Case msheet
Case "BoQ"
Range("s:s"
.Select
Selection.Find(What:="01", After:=ActiveCell, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
ActiveCell.Offset(0, -11).Select
End Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
End Sub
The following code has an error in the paste function can anyone fix it cheers.
Sub FindSub()
msheet = ActiveSheet.Name
Select Case msheet
Case "BoQ"
Range("s:s"
Selection.Find(What:="01", After:=ActiveCell, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
ActiveCell.Offset(0, -11).Select
End Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
End Sub