I all,
I have a Textbox called "Cost" with is set at currency format and a Combo box called "Status" which has two options "Open" and "Closed", (Default value of "Open").
What i am trying to do is when the cost is changed to anything greater then £0.00 the Combo box changes it's value to "Closed".
I have tried the following If statement but it is not working, i think it is down to the fact that its a currency value????????
If Me.Cost >= "£1.00" Then
Me.Status = "Closed"
Else
Me.Status = "Open"
End If
Any Help would be great.
I have a Textbox called "Cost" with is set at currency format and a Combo box called "Status" which has two options "Open" and "Closed", (Default value of "Open").
What i am trying to do is when the cost is changed to anything greater then £0.00 the Combo box changes it's value to "Closed".
I have tried the following If statement but it is not working, i think it is down to the fact that its a currency value????????
If Me.Cost >= "£1.00" Then
Me.Status = "Closed"
Else
Me.Status = "Open"
End If
Any Help would be great.