I am trying to build a visibility field based on the patient's primary insurance information. Does anyone know how to do this? Right now I have
{Ins_name("P") == "United Healthcare Choice Plus"}
but what I am trying to accomplish is to have the field appear with ANY United Healthcare insurance. For example United Healthcare Choice Plus or United Healthcare Medadvantage or United Healthcare Medicare HMO. I tried {Ins_name("P") >= "United Healthcare"} but that didn't work. Any thoughts?
Good Afternoon,
Below will do what you are requesting.
{match(Ins_name(“P”),“United Healthcare”)>0}
match searches a field for text and returns a number referencing where it found the information. If it doesn't find anything it returns -1.
-James
argh thank you! i was looking for a "contains" type of function.