How to get only one value in SSRS?

2019-08-29 09:19发布

enter image description here

This is the values in table1. enter image description here

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

标签: ssrs-2016
1条回答
闹够了就滚
2楼-- · 2019-08-29 10:06

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)
查看更多
登录 后发表回答