How to get only one value in SSRS?

2019-08-29 10:00发布

问题:

This is the values in table1.

I have a data in a Table1 where it is login hours for a day for multiple employees. I am creating a SSRS report and data they want is below This is the Output i need in the below table in SSRS 2016. Thank you in advance

回答1:

If you looking to hide repeating "time" value, then you can use expression for that column:

=IIF(Fields!time.Value = Previous(Fields!time.Value), "", Fields!time.Value)


标签: ssrs-2016