G
Gav
hi all
The following code copies and pastes a data range "appendix" to a sheet "contract". How do i amend so that the images within this range do not copy....only the data (text) does??
Cheers!!!
Private Sub CommandButton1_Click(
Dim tm
tmp = Worksheets("quote2").Range("appendix").Rows.Coun
Worksheets("contract").Activat
Cells.Find(What:="appendix1.0", After:=ActiveCell, LookIn:=xlFormulas,
LookAt:=xlPart).Offset(2, 0).Selec
Selection.Resize(tmp, 1).EntireRow.Inser
Worksheets("quote2").Range("appendix").Cop
ActiveSheet.Past
Application.CutCopyMode = Fals
End Sub
The following code copies and pastes a data range "appendix" to a sheet "contract". How do i amend so that the images within this range do not copy....only the data (text) does??
Cheers!!!
Private Sub CommandButton1_Click(
Dim tm
tmp = Worksheets("quote2").Range("appendix").Rows.Coun
Worksheets("contract").Activat
Cells.Find(What:="appendix1.0", After:=ActiveCell, LookIn:=xlFormulas,
LookAt:=xlPart).Offset(2, 0).Selec
Selection.Resize(tmp, 1).EntireRow.Inser
Worksheets("quote2").Range("appendix").Cop
ActiveSheet.Past
Application.CutCopyMode = Fals
End Sub