A
Angyl
This isn't working quite right. I want the code to check which box is
checked and put one thing in the cell, and if neither of them are cheked to
put nothing in, but I'm always just getting the second choice (6789)
irregardless of the checkbox status.
Pls help.
With tblTarget
If Check1.Checked = True Then
.Cell(1, 1).Range.Text = "12345"
If Check2.Checked = True Then
.Cell(1, 1).Range.Text = "6789"
End If
End With
checked and put one thing in the cell, and if neither of them are cheked to
put nothing in, but I'm always just getting the second choice (6789)
irregardless of the checkbox status.
Pls help.
With tblTarget
If Check1.Checked = True Then
.Cell(1, 1).Range.Text = "12345"
If Check2.Checked = True Then
.Cell(1, 1).Range.Text = "6789"
End If
End With