D
Dave Elliott
I need to make a label visible if a textbox amount is $2500.00 or more.
The Lable is named Label354
The textbox is named Commission
I want the (label354) to be visible if the textbox (Commission) amount
equals $2500.00 or more.
The format of the textbox is currency
I tried this, but it showed up all the time after the criteria was met
If Commission >= 2500# Then
Label354.Visible = True
End If
The Lable is named Label354
The textbox is named Commission
I want the (label354) to be visible if the textbox (Commission) amount
equals $2500.00 or more.
The format of the textbox is currency
I tried this, but it showed up all the time after the criteria was met
If Commission >= 2500# Then
Label354.Visible = True
End If