I've tried the Pivot table and it doesn't seem to be working... can you comment on the following query?
Select BidId,
'Cancelled',
'In Progress',
'Loss',
'New',
'No Bid',
'Referred Out'
FROM (
Select bi.BidId, dbo.Status.Name, dbo.StatusComments.CommentDate
From Bids...