How to get only one value in SSRS?

ぃ、小莉子 提交于 2019-12-13 03:13:29

问题


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)


来源:https://stackoverflow.com/questions/51289309/how-to-get-only-one-value-in-ssrs

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!