I am trying to create a query where I can create a report of the number of registrants and guests for a meeting by registration type.
Each registrant and guest has their own specific reg_type.
They are:
A for Adult
G for Girl
NMA for Non Member Adult
NMG for Non Member Girl
I have used this before when I have tried to convert the G reg_type to a number before:
Girls: Sum(Val(Format(Asc([reg_type])-71,"\0;\0;\1")))
Question is how can I convert the NMA and NMG to the Ascii format to use like this or is there a better way?
Each registrant and guest has their own specific reg_type.
They are:
A for Adult
G for Girl
NMA for Non Member Adult
NMG for Non Member Girl
I have used this before when I have tried to convert the G reg_type to a number before:
Girls: Sum(Val(Format(Asc([reg_type])-71,"\0;\0;\1")))
Question is how can I convert the NMA and NMG to the Ascii format to use like this or is there a better way?