Hi, can someone tell me if there is a Save Selection VBA (whatever is highlighted) and Save As give doc name way to do this? One can print selection but can one save selection with VBA? Many thanks...
Tony Jollans - 13 Jan 2008 09:05 GMT
Something like this perhaps (untried) ..
Selectin.copy
with documents.add
.Range.Paste
.Save
.Close false
End With

Signature
Enjoy,
Tony
Hi, can someone tell me if there is a Save Selection VBA (whatever is highlighted) and Save As give doc name way to do this? One can print selection but can one save selection with VBA? Many thanks...