Blank line in reporting
Dear Developers,
I have a reporting requirement where I need to have one blank line after certain rows
Example
ROw1
Row2
Row3
Row4
<Blank line>
Row5
Row6
Can you please explain how can i add blank like in between the report. (i dont have option to keep blanks in Reporting table).
There are specific words (descriptions like 'Other HI Total') and i want to have blank line excetly above it.
Thanks in advance.
July 15th, 2011 7:07am
You have to handle this at db level by adding blank records to the dataset by using a temp table and then selecting from it in a final query--------------------------------------------------------
Surender Singh Bhadauria
Free Windows Admin Tool Kit Click here and download it now
July 15th, 2011 7:25am
If you Are using a Table Kindly use this expression in all your Table Expression:
=IIF(RowNumber(Nothing) Mod 5 = 0, nothing, Fields!Calendar_Year.Value)
Blank Row after Every 4 Rows. Chnge the Expression as Per your Requirement.
Rakesh M J
Dont forget to mark it as Answered if found useful
MCTS,MCITP,MCSS
http://myspeakonbi.blogspot.com/
July 15th, 2011 7:56am
Hi,
You can place a expression on the records like if you want to kept blank line after some fields or specify expression to add blank line after specific row count
Dont forget to mark it as Answered if found useful
Thanks, Pranil Yambal | MCTS | Pranil.Yambal@hotmail.com
Free Windows Admin Tool Kit Click here and download it now
July 15th, 2011 8:18am


