Hi all
First time using the modern charts in access. I am trying to plot a simple pie chart which depicts how many of courses are still in date and how many are out of date. My query (lets call it qry1) has CertificationDate, ExpiresOn, DaysLeft fields. However, I cannot get it to plot on a pie! I tried making a new query (qry2) which has these 3 fields:
Appreciate any and every suggestion!
First time using the modern charts in access. I am trying to plot a simple pie chart which depicts how many of courses are still in date and how many are out of date. My query (lets call it qry1) has CertificationDate, ExpiresOn, DaysLeft fields. However, I cannot get it to plot on a pie! I tried making a new query (qry2) which has these 3 fields:
- Count(*) - to count all records
- CountValid: Count(IIf([ExpiresOn] > Date(), 1, Null))
- CountInvalid: Count(IIf([ExpiresOn] < Date(), 1, Null))
Appreciate any and every suggestion!