ProtocolPirate
Programmer
I have labels in a certain field such as MRI, MRIWO and MRIWWO, and I want to be able to count the total number of occurances of records with all three values for a given doctor.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT Doc.Name, SUM(iif(study.GrpName Like 'MRI%', 1, 0) As MRI, SUM(iif(study.GrpName Like 'CT%', 1, 0) As CT
FROM ...