D
Dave Elliott
This codes makes the Label423 show up, but if I change the >0 to <0 then the
Label does not show up, WHY?
The value in the textbox krap will be a negative number, i.e. -3 for the
criteria I want, ANY thing below zero
krap does not have a default format and it will always be a number.
Me.Label423.Visible = (Me.krap) >0 ' This Works Label
Shows
Me.Label423.Visible = (Me.krap) < 0 ' This Does Not Work Label Does Not
Show
Label does not show up, WHY?
The value in the textbox krap will be a negative number, i.e. -3 for the
criteria I want, ANY thing below zero
krap does not have a default format and it will always be a number.
Me.Label423.Visible = (Me.krap) >0 ' This Works Label
Shows
Me.Label423.Visible = (Me.krap) < 0 ' This Does Not Work Label Does Not
Show