R
randlesc
I have a table called Observations which has a field called JOBTITLE. In
this field we list various types of MDs, RNs, HAs, etc. Most of my reports
require that I report this out separately.
However, I have a new report that requires me to lump some job titles
together. For example: MD and ARNP will now be called Provider; RNs, MAs and
HAs will now have the delightful name RN-MA-HA.
I have written into the JOBTITLE some rules for combing MDs and ARNPs;
however I can't seem to get it to go further and lump the RN-MA-HAs.
Provider: IIf([JobTitle] Like "MD" Or [JobTitle] Like "ARNP","MD-ARNP",[Job
Title])
Finally, the third group is everyone else who doesn't fit into the first two
groups.
What is the best way to make these lump together so I can then pull up
percentages for these groupings?
Many thanks
this field we list various types of MDs, RNs, HAs, etc. Most of my reports
require that I report this out separately.
However, I have a new report that requires me to lump some job titles
together. For example: MD and ARNP will now be called Provider; RNs, MAs and
HAs will now have the delightful name RN-MA-HA.
I have written into the JOBTITLE some rules for combing MDs and ARNPs;
however I can't seem to get it to go further and lump the RN-MA-HAs.
Provider: IIf([JobTitle] Like "MD" Or [JobTitle] Like "ARNP","MD-ARNP",[Job
Title])
Finally, the third group is everyone else who doesn't fit into the first two
groups.
What is the best way to make these lump together so I can then pull up
percentages for these groupings?
Many thanks