SELECT stdate, students.nationality
, Sum(iif(nz(students.nationality,"")="US",1,0) as CountUS
, Sum(iif(nz(students.nationality,"")="EU",1,0) as CountEU,
FROM students
GROUP BY students.nationality
GROUP by stdate
When I put the stdate in the selection it forces me to put it in the...