I have a workbook which contains data for all of our vendors. It is set up to filter every sheet based on a dropdown on the first sheet. I would like a ‘button’ to create a new workbook containing the formulas, buttons, formatting, etc. from the original - but only with the selected data.
I hope to give the workbook to each individual vendor, but don’t want them to have access to other vendors’ data.
I have a very simple macro that exports the workbook to a new copy, but all of the underlying data also goes.
Here’s what I have:
Sub ()
ThisWorkbook.Sheets(Array(“Summary”, “Suggested”, “Selected”)).copy
End Sub()
Thanks in advance for any help.
I hope to give the workbook to each individual vendor, but don’t want them to have access to other vendors’ data.
I have a very simple macro that exports the workbook to a new copy, but all of the underlying data also goes.
Here’s what I have:
Sub ()
ThisWorkbook.Sheets(Array(“Summary”, “Suggested”, “Selected”)).copy
End Sub()
Thanks in advance for any help.