Looking for some guidance on formulating the Section Expert to suppress duplicate results. I had this in the past, but cannot locate it when I need it--typical.
If I remember right, it looked at the previous line results and checked if it equaled the next line's, then either suppressed or displayed accordingly.
Thanks in advance,
Sam
Could you use a DISTINCT clause in your query? Or in CR, from the Database drop down, select distinct records?
Sorry, I didn't word that above post correctly.
I'm trying to suppress additional results and only get the first/last in the series. For example:
BEFORE:
Patient 1, Lab 1 Result
10/2012 10.0
11/2012 11.8
12/2012 9.7
AFTER:
Patient 1, Lab 1 Result
12/2012 9.7
group by patient, sort by date, put fields in group footer, will show last in footer.
Thank you!!!