Looking for some advice in splitting up an Excel workbook. Currently it has VBA code, and worksheets contain user-entered data. I'm looking to separate the code from the user data - what's the best way to do this?
I'm aiming at saving the user data in the worksheets in a workbook separately from the code so that when users save their data the workbook contains only their data. The reason is that the entire book is pushing over 2MB, whereas the data itself is only about 50KB per sheet, and it's a waste of time and disk space resaving the code with each workbook.
My first intuition is an Excel Add-in - but as I've never delved into Add-ins, can anyone provide any guidance or point out any pitfalls I might come across in doing so, or point out an alternative?
I'm aiming at saving the user data in the worksheets in a workbook separately from the code so that when users save their data the workbook contains only their data. The reason is that the entire book is pushing over 2MB, whereas the data itself is only about 50KB per sheet, and it's a waste of time and disk space resaving the code with each workbook.
My first intuition is an Excel Add-in - but as I've never delved into Add-ins, can anyone provide any guidance or point out any pitfalls I might come across in doing so, or point out an alternative?