I have a data source that contains dimension data. This data contains Width, Diameter, Weight, and other data.
I can filter the list to just show the Width, but I only want it to show the first Width (since they all happen to be the same). The Report Designer still creates a blank row in the report for every row after the first. I tried using
= IIf(RowNumber()=1, Fields.DimensionInfo.Dimension, "")
How can I only show the first item? Or, how can I force the blank rows to not take any space?
Thanks!