Full code can be edited to:
Sub DDS_Create()
Cells.Find(What:="internal manufacturer guarantee", After:=ActiveCell, _
LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, _
SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Delete Shift:=xlUp
Rows("14:16").Delete Shift:=xlUp
Range(Range("A14"), Range("A14").End(xlDown)).Copy
Worksheets.Add
Range("A1").PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
With Range("A1").CurrentRegion
.Value = Evaluate(.Address & "&""?""")
End With
End Sub
Dom
Bookmarks