checking for 'not' something is tough. I would group by patient, create a formula for the med in question, returning 1 if exists else 0, then suppress the detail and in the group footer sum this formula, then suppress the group is this sum = 0.
jjordet said:
checking for 'not' something is tough. I would group by patient, create a formula for the med in question, returning 1 if exists else 0, then suppress the detail and in the group footer sum this formula, then suppress the group is this sum = 0.
Can you please help me get started with the formula? I've never done if exists or not exists before. All new to me. I am using the MEDICATE.Description field from Centricity EMR 95. database. Thanks!
if UpperCase ({MEDICATE.DESCRIPTION}) like "search med" then
1
else
0
Will I do a report listing ALL patients (grouped) then list all the meds taken first then filter out the meds, before adding the other criteria(fields) to the report?