I have a form that captures yes/no responses. The forms control source is a table called tblEpisode
I have a query called qryEpisode, here is part of it:
SELECT tblPatient.Patient_Name, IIf([PastMedical_StrokeTIA]="Yes",2,0) AS StrokeTIAChadsVasc, IIf([Hypertension]="Yes",1,0) AS...