stevensun2007


I have a table that displays a bunch of data based on their percentage changes.

There is a parameter (let's say 5%) that the user can set to display only the data which either increased more than 5% or decreased more than 5%.

I want to have a space between the positive changes and the negative changes. ie, to create a blank row between the +'s and the -'s. Does anyone know of a way to do this

Thanks,
Steven



Re: Creating a blank row in a table between positive & negative values

kcon


If what you are trying do is print all the positives and then a blank row and then all the negative use a table with a conditional grouping such as =iif(Fields!myfield.value<0,1,0). The just you a blank group footer row.






Re: Creating a blank row in a table between positive & negative values

stevensun2007

Thanks