I am running SSRS in Visual Studio 2013 community edition.
My report is showing rent for the "current period" and then has an outside group that shows the "future rent" and $ amount on the right. Under the first row, I have placed an expression that shows me the $ per SqFt. My question is, how can I have this row that shows in White, appear in the same row as the first "future rent date"? I think I need to fudge with RowNumber! but I am not sure how to tackle this.
Thanks for your input,
=IIF(RowNumber("GroupbyCategory") = 1, False, True)
? – StevenWhite=IIF(Rownumber("UnitNumber1")>1,Fields!OccurredDate.Value,Nothing)
However, on the left, I am not sure how to nest this correctly into this expression for the first cell in white:= IIF(Fields!SqFt.Value = 0, 0, (IIF(Fields!ChargeDesc.Value Like "*Base*", CDEC(Fields!Amount.Value), 0) * (12 / Fields!SqFt.Value)))
Thanks for your replies, @StevenWhite – Geo