1

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)

4

1 回答 1

2

我会复制这一行,所以会有一行包含合并的单元格,第二行是单独的。然后应将第一行的隐藏属性设置为

 = (Fields!ConferenceName = "interenational")

对于第二行

 = (Fields!ConferenceName = "national")
于 2009-03-09T20:04:29.333 回答