So I'm new to the world of macros. I'm competent in excel with formulas and such but when it comes to macros I seem to not be getting it.
I recently posted a plea for help with creating a macro to insert copied cells below an active cell was shown to use the below macro:
Sub Add_Row()
Dim i As Long
i = Application.InputBox("How many copies?", Type:=1)
ActiveCell.Offset(1).Resize(i).EntireRow.Insert
ActiveCell.EntireRow.Resize(i + 1).FillDown
End Sub
It work exactly as I wanted. The problem now is I am making a base template worksheet that co-workers will use. Upon opening the worksheet, they will 'Save As' to a specific folder for that project. But when I try to use the macro, it is opening the base template workbook in the background after giving me an error stating "Automatic update of links has been disabled...etc." basically telling me beware of nefarious content from shady people on the internet, which I'm pretty sure I am not.
In an effort to eliminate user error, I started over from scratch on a blank worksheet and before anything, tried using the macro (after re-recording/editing it), clicked the button to run and IT OPENED THE VERY FIRST WORKSHEET AGAIN.
Please help...and feel free to explain it in a way that a 8 year old would understand.