Is there a way to only select the first comment imputed for each record?

35 Views Asked by At

I have a dataset that consists of CommentDateTime, CommentCode, Comment and CommentKey. There are multiple comments per a CommentCode but I only want the first comment created for each CommentCode to show up in my report.

Is there a way to do this?

I am new to SSRS so I am sorry if I didn't explain my question super well.

1

There are 1 best solutions below

3
On BEST ANSWER

Unless I'm missing something, it would be better to do this in your dataset query so that only the first comment is returned rather then sending lots of data to the report and then writing expressions to filter it out.

Something like

SELECT a.CommentDateTime, a.CommentCode, a.Comment, a.CommentKey 
    FROM (
        SELECT 
                CommentDateTime, CommentCode, Comment, CommentKey,
                ROW_NUMBER() OVER(PARTITION BY CommentCode ORDER BY CommentDateTime) as RowN
        FROM @myTable
        ) a 
    WHERE a.RowN = 1

This assumes CommentKey is unique to each comment. WHERE a.RowN = 1