Hi all,
I am working on my custom report extension for Report 1302 /Standard Sales - Pro Forma Inv/
And i am modifying the exported RDLC of this report.
There is a Row Group 'Line' to show the records.
No matter how many records in this invoice, it will always have extra rows above / below the records.
It makes the 'RowNumber' not working fine & display more line if i add border for the table.
How can i remove the extra rows? thanks
Row Group:
Result:
There is only one records actually, but it shows me 3 rows.
I tired to set Expression for Visibility in Row Properties, is not helpful.
1. =IIF(IsNothing(Fields!ItemDescription.Value),TRUE,FALSE)
2. =Code.BlankZero(Fields!ItemDescription.Value) <-- it returns error
3. =IIF(LEN(Fields!ItemDescription.Value)=0,TRUE,FALSE)