B
Btobin0
I am trying to get cell A1 to be A2 through A31. I want to be able to select
A3 and A1 changes to it.
A3 and A1 changes to it.
Application.ActiveSheet.Range("A1").Value1 And Application.ActiveCell.row < 32 Then
Btobin0 said:That errored out. I did get this to work. but still did not change any values
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Application.ActiveCell.Column = 1 And Application.ActiveCell.Row < 32 Then
Application.ActiveSheet.Range("A1").Value = Application.ActiveCell.Value
End If
End Sub
I am trying to get cell A1 to be A2 through A31. I want to be able to select
A3 and A1 changes to it.