Quick question:
I have a report that lists patient comments based on different areas. The areas are entered into the database as either 1, 2 , 3, etc. or A, B, C, etc. These correspond to a section title: "Scheduling you visit"; Registration"; "Facility" and so on. On my report I have a text box that is fills in with the appropriate title according to what is in the section text box:
If me.section = "1" then
me.text10 = "Scheduling your visit"
end if
But if me.section = A then it doesn't work. Why and how do I fix it? I know there is a simple answer but I just can't find it. Thanks!
I have a report that lists patient comments based on different areas. The areas are entered into the database as either 1, 2 , 3, etc. or A, B, C, etc. These correspond to a section title: "Scheduling you visit"; Registration"; "Facility" and so on. On my report I have a text box that is fills in with the appropriate title according to what is in the section text box:
If me.section = "1" then
me.text10 = "Scheduling your visit"
end if
But if me.section = A then it doesn't work. Why and how do I fix it? I know there is a simple answer but I just can't find it. Thanks!