I am working on a report in our application, when suddenly a design problem strikes me..how can i make the drill downs to be expanded initially if there is a record to show and not expanded if there is no record to show..is this possible in the reporting services 2005? any help will be highly appreciated..tnx in advance..
GOD bless us..
You can probably do this by putting a visibility expression on the drill down group that uses the IsNothing function to check for data in the datasource?|||i had tried that approach but nothing happened,= IsNothing(Fields!task_name.Value)..is there any way you can see i can do it? is there any more functions to use in this scenario?|||Is it a table dataregion?|||In RS , it is written like IIF(expression, truepart, falsepart).But it doesn't work.You should think like IIF(expression, falsepart, truepart)
So you should write = Not IsNothing(Fields!task_name.Value)
No comments:
Post a Comment