Display MoreRe: Including a ComboBox when inserting a new table row with Macro
Why do you need a macro to copy down formulas. This feature is available in an Excel Table
Also, why use a ComboBox when data Validation Lists are more convenient and less problematic. Also, you don't need VBA hen using this feature
If you don't want a Data Validation there is another built-in feature that allows the user to pick from a list of previous entries. Just right click on the cell and choose pick from list
I needed a macro because the worksheet is protected and will be used by others as a form that may require more lines to be added as needed.
I need the combobox because a validation table may not always have the latest information and I would like them to be able to write in the correct information if it's not there.
Good news is I have been able to work through the problem, including having to unlock the worksheet and locking it back up when row is inserted. Other complications that arose were having to clear out the copied data from the row it was copied from.
If anyone is interested in the details of how this was done, let me know and I will post.