Hello Chad,
If I understand you correctly, you only need the reprot to show a single
record even if the same SC has different supervisor in the table. For
example, if table has the records:
sc1 supervisor1
sc1 supervisor1
sc1 supervisor2
sc2 supervisor3
sc2 supervisor4
You only want to report to show:
sc1 supervisor1
sc2 supervisor3
or
sc1 supervisor2
sc2 supervisor3
If I'm off-base, please correct me.
You could try the following query to get the result you want in SQL view of
the query:
select SC, min (supervisor) as supervisor1 from individuals group by SC
If this does not meet your requirement, please let's know more details.
Thank you!
Best Regards,
Peter Yang
MCSE2000/2003, MCSA, MCDBA
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications
<
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx>.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
<
http://msdn.microsoft.com/subscriptions/support/default.aspx>.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.