Hi All, I have a form that I have a textbox that is a calculated field. I also have a label that is set to not visable. What I am trying to do is if the textbox ( Text92 ) has a value of <=-1 the make label visable ( Label27 ) I have tried the following and none of them seem to work it doesn't seem to fire my code.
Nothing happens, I also tried
I get an error on the Else clause on this one.
Basically what I need is a way that if the value in Text92 is anything less then 0 to display Label27. If they make changes and the value in Text92 changes to 0 or above hide Label27. I have tried it with label and with a text box and I can't get it to loop through and display my message. I hope I have explained it correctly and ant to say Thank you in advance for looking at this.
Thank You
Don
Code:
Form_Current
If Me.Text92 <= -1 Then Label27.Visable = True
Nothing happens, I also tried
Code:
Form_Current
If Me.Text92 <= -1 Then Label27.Visable = True
Else Label27.Visable = False
End If
Basically what I need is a way that if the value in Text92 is anything less then 0 to display Label27. If they make changes and the value in Text92 changes to 0 or above hide Label27. I have tried it with label and with a text box and I can't get it to loop through and display my message. I hope I have explained it correctly and ant to say Thank you in advance for looking at this.
Thank You
Don