sorting - SSRS sort before group on in a row group -
I did a grouping in a report on it.
I had a group on a code, to get rid of duplicate code. However, there was also a sequence in my date. My intention was to get the code first and remove all the duplicates, though instead SSRS got rid of it duplicate code, and then sort all the results according to the date!
How can you "add to group" settings of a row group that you want only the initial date?
You can group only the query if you are doing this in SQL:
SELECT Code, MIN (SomeDate) AS MinTate code code from MyTable GROUP
Comments
Post a Comment