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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.