Working in vs2008 I have a report that accepts 30 rows of data. The issue I have is that I need to split this data up into 5 sections of 6 with a border...
_______________________
1 data
2 data
3 data
4 data
5 data
6 data
_______________________
7 data
8 data
9 data
10 data
11 data
12 data
_______________________
etc etc
I've tried doing it in the code of the textbox in the tablerow... =iif(Fields!fld_position.Value>0 and Fields!fld_position.Value<7, Fields!fld_position.Value,"") and then have a tablerow with underscores in it
but all that does is give me the first 6 rows ok and then give me 24 rows of no data. I need to get rid of the 24 rows of no data but dont know how to do it.
Any ideas?