Re: Inserting a blank row at each change in the cell value
Not sure why you want to do that. Try this:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
Me.Rows(Target.Row + 1).Insert
Application.EnableEvents = True
End Sub
Don't forget to use [CODE]your code here[/CODE] when posting code
If your question was answered please use Thread Tools to mark your thread [RESOLVED]