Rather than Issue Date, you can strictly put Quarter (a numeric field, not a
date field)
When joining the two tables, you'll have to go into the SQL, and set the ON
clause to something like:
ON DatePart("q", Table1.IssueDate) = Table2.Quarter

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Hi,
>
[quoted text clipped - 13 lines]
>
> Thanks for your help.