Hello Everyone,
I need a help here on report design using SQL Server Report Builder. I have a data Grouped by Document No. with Total displayed for each Document No.
The tricky part here, i need to make sure one page to display 5 row, even if there’s no longer data displayed. like below.
I have tried method with Ceiling expression on the group to make sure there’s page break every 5 row.
and then put the Visibility Expression on every rows to hide the row based on the RowNumber result.
3rd Row : =IIF(RowNumber(Nothing) - 5 >= 0,true,false)
4th Row : =IIF(RowNumber(Nothing) - 4 >= 0,true,false)
5th Row : =IIF(RowNumber(Nothing) - 3 >= 0,true,false)
6th Row : =IIF(RowNumber(Nothing) - 2 >= 0,true,false)
7th Row : =IIF(RowNumber(Nothing) - 1 >= 0,true,false)
Like below :
However the result still incorrect, as displayed below :
Is there anything i can do to rectify this ?