Dynamic merging of cells in SSRS

让人想犯罪 __ 提交于 2019-12-11 08:52:36

问题


In an SSRS Report ,I have a table which has 14 columns, 1st column is 7am and the last column is 7pm. I have 100 records with conference names and the timings,

ex:

  1. international conference 9am to 5pm
  2. national conference 8 am to 11 am

so the problem is these column cells must merge based on the timings and display as one textbox with center aligning the text

ex: national conference the columns from 8 to 11 am are to be merged and the time 8 to 11am must display in these merged cells with center align.

Can anyone give me any suggestion for this issue, i thought to write custom code for this but i did not get any idea.

So, If anyone can help me i will be very grateful.

(Can we merge the cells dynamically based on the condition in SSRS)


回答1:


I would duplicate this row so there will be one row with merged cells, second with separate. Then Hidden propperty of 1st row should be set to

 = (Fields!ConferenceName = "interenational")

And for the 2nd row

 = (Fields!ConferenceName = "national")


来源:https://stackoverflow.com/questions/611962/dynamic-merging-of-cells-in-ssrs

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