Hi there,
I'm having an issue with a visibility region I'm trying to create.
I have a data field to show last pap and HPV result. I only want this to show for patients who are 21-65 years of age, and where their sex is F.
What I currently have in the visibility region is
(PATIENT._AGEINMONTHS)=>252 AND (PATIENT._AGEINMONTHS)=<780 AND (PATIENT.SEX) = F
This isn't working. Can someone help me out?
Try PATIENT.SEX =="F"
it it looks like you are using an assignment operator rather than a comparison operator. Responding from my phone so I hope that helps.
I would also stay clear from the "patient.ageinmonths" I noticed that it doesn't always work. I had an issue with it showing up for very young patients even when I was trying to use that with a visibility region for patients over the age of 65. I would use this instead
PATIENT_AGE() >= 18
I also agree with Greg above, you have to use two equal signs and the quotes around the F