Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cop/Paste data from Combobox

Status
Not open for further replies.

JAN01

Technical User
Jan 15, 2003
3
GB
Is it possible to copy & paste the data from a combo box?

I have an excel document that contains a macro to copy/paste/e-mail a single worksheet within a workbook, but it does not copy the combobox.

Any suggestions?
 
The procedure is as follows:--

An excel workbook that contains multiple pages that contain orderforms.

Once the orderform has been completed a macro button is pressed to enable the newest orderform to be copied into a new workbook and then e-mailed for ordering.

All information is copied except from a combo box that is in the original workbook.

The macro is as follows:-

Sub email_page()

'
Cells.Select
Selection.Copy
Workbooks.Add
ActiveSheet.Paste
Application.CutCopyMode = False
ActiveWindow.DisplayGridlines = False
Application.Dialogs(xlDialogSendMail).Show
End Sub


I hope I have explained it okay!

 
Thanks Skip!

Sometimes you just can't see the wood for the trees!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top