HDfatboy03
Board Regular
- Joined
- May 23, 2010
- Messages
- 62
Hello
Need help with check boxes. I have the following statement, the check box return's "TRUE" when selected but does not return "FALSE" when NOT selected and I need it turn return "FALSE" when not selected.
Below is the code I am using. What am I missing?
<Start Code>
'START box buttons for FAIRWAYS HIT H E R E
'copy the NEW DATA FAIRWAYS HIT to database
If FH1 = True Then
ws.Cells(iRow, 42).Value = FH1.Value
ws2.Cells(9, "C").Value = FH1.Value
End If
<End Code>
Thanks for any assistance or suggestion
HDfatboy03
Need help with check boxes. I have the following statement, the check box return's "TRUE" when selected but does not return "FALSE" when NOT selected and I need it turn return "FALSE" when not selected.
Below is the code I am using. What am I missing?
<Start Code>
'START box buttons for FAIRWAYS HIT H E R E
'copy the NEW DATA FAIRWAYS HIT to database
If FH1 = True Then
ws.Cells(iRow, 42).Value = FH1.Value
ws2.Cells(9, "C").Value = FH1.Value
End If
<End Code>
Thanks for any assistance or suggestion
HDfatboy03