Allow value in only one of two cells
If Target.Address = "$K$11" Then
the k must be uppercase
--
Gary''s Student - gsnu200751
"CLR" wrote:
Hi All........
Having trouble here trying to build a toggle to allow an entry in only one
of two cells.
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Target.Address = "$K$10" Then
Range("k11").Value = ""
Range("K10").Value = "CRA"
Else
End If
If Target.Address = "$k$11" Then
Range("k10").Value = ""
Range("K11").Value = "CRA"
Else
End If
End Sub
The first IF works fine, the second one don't work at all.
Any help would be appreciated.
TIA
Vaya con Dios,
Chuck, CABGx3
|