Can this be done? In SQL I have a temporary file (#da)that selects the first (earliest) occurrence of a date field and a membership number. When running the full select I can join it
So I need to be able to do the same thing to produce the Crystal Report. There is no other way in SQL (that we know of) to select the unique occurrence from these tables; can I replicate this in Crystal? What would I need to do?
Thanks in advance,
Des.
Code:
join #da ON #da.membership_no = m.membership_no and #da.[Date Altered] = uh.date_altered
--Only find exact matches to 1st occurrence of Fellow appointment
Thanks in advance,
Des.