R
RompStar
does this look like it would do the job of auto filling the formula to
new rows if I stick it into the sheet code ?
Private Sub Worksheet_SelectionChange2(ByVal Target As Range)
Application.EnableEvents = False
If Target.Offset(-1, 0).HasFormula = True Then
Range(Target.Offset(-1, 0), Target).FillDown
End If
Application.EnableEvents = True
End Sub
I did it and turned off the extend data range formats and formulas in
tools, options and edit...
SO I am thinking the script isn't working like it should, how close is
it ?
new rows if I stick it into the sheet code ?
Private Sub Worksheet_SelectionChange2(ByVal Target As Range)
Application.EnableEvents = False
If Target.Offset(-1, 0).HasFormula = True Then
Range(Target.Offset(-1, 0), Target).FillDown
End If
Application.EnableEvents = True
End Sub
I did it and turned off the extend data range formats and formulas in
tools, options and edit...
SO I am thinking the script isn't working like it should, how close is
it ?