Link to home
Start Free TrialLog in
Avatar of vbnetcoder
vbnetcoder

asked on

ssrs make detail row appear as hidden on a report

Is it possible to make a detail row in SSRS appear as it is hidden even though in reality it is not?

I have some custom code that needs to be called for each detail row, and it ONLY gets called when the row is NOt hidden

But, I only want what is in the total rows for the group to show up on the report so I want the detail to appear hidden even though
it is not.
Avatar of Jim Horn
Jim Horn
Flag of United States of America image

Click on the row, then right-click:Row Visibility on the grey box to the left.
In the Row Visibility dialog that appears, select Hide, and hit the Ok button.
Avatar of vbnetcoder
vbnetcoder

ASKER

That is the problem .... when i hide it that way my custom code function does not get call for whatever reason.
ASKER CERTIFIED SOLUTION
Avatar of Jim Horn
Jim Horn
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Basicly, I am doing this at every detail level in a text box.

Perhaps, there is a better way of doing that....

=Code.Caclulatepayments (fields1.value, fields2.value etc.)
it doesn't let me set the height of the textbox to 0..
i meant "row heightt"
I am running the code from a detail line. Do I really need to be doing this?  Is there another way I could run the coder per each value in the dataset without putting it in the detail line?
ty