Okay, where to begin.. lol.
Currently I use a macro to insert a new row above the cell which is selected, the macro copies the formatting from the row above but I need it, or a separate macro to also copy formula's from the row above in columns "V, W, X, AG, AH, AI."
I have had a look on the web and cant really find anything (or probably not understand it as my knowledge of excel is competent and knowledge of VB is non existent).
Below is the macro which is currently used to insert a new row and copy the formatting from the row above. Any suggestions or help would be much appreciated as I am really being pushed for a solution.
(Apologies if I shouldn't have posted a new thread but I couldn't find anything that quite matched the exact macro I am after)
----------------------------
Sub InsertRow()
Dim Rng, n As Long, k As Long
Application.ScreenUpdating = False
Rng = InputBox("Enter number of rows required.")
If Rng = "" Then Exit Sub
Range(ActiveCell, ActiveCell.Offset(Val(Rng) - 1, 0)).EntireRow.Insert
k = ActiveCell.Offset(-1, 0).Row
n = Cells(k, 2).End(xlToLeft).Column
Range(Cells(k, 2), Cells(k + Val(Rng), n)).FillDown
End Sub
Bookmarks