Viewing 2 posts - 1 through 2 (of 2 total)
Clay,
I tried this with AdventrueWorks and managed to get something sorted ...
Create 2 reports, a master and a detail.
Master report:
SELECT ContactId FROM Person.Contacts WHERE (whatever ...)
Add a table to the...
September 8, 2006 at 9:31 am
#659372
How about trying this approach:
SELECT TOP 15
PlayerID as RecordID,
PlayerName as RecordLabel,
ot.BuyerTeamID as RecordExtraID,
ot.BuyerTeamName as RecordExtraLabel,
Bid as RecordValue,
'HighestTransfer' as Type,
0
FROM
OldTransfers...
September 8, 2006 at 2:05 am
#659281