This is probably an easy to do, but somehow I am stuck.
There is a field in my form that lists if the company is a hospital or clinic (OP or IP).
And then there is a field in my form that shows the size of the company. The label is "Size". I dont want that label to be "Size". IF the company is a hospital, I want the label to be "Beds". IF the company is a clinic, I want the label to be "Provider". Thanks.
I have tried this on the Before Update Event:
But that is not working.
There is a field in my form that lists if the company is a hospital or clinic (OP or IP).
And then there is a field in my form that shows the size of the company. The label is "Size". I dont want that label to be "Size". IF the company is a hospital, I want the label to be "Beds". IF the company is a clinic, I want the label to be "Provider". Thanks.
I have tried this on the Before Update Event:
PHP:
If Me.Out_Patient___In_Patient.Value = "IP" Then
Me.Size.Value = Provider
End If
But that is not working.