Showing posts with label hide. Show all posts
Showing posts with label hide. Show all posts

Monday, March 12, 2012

how to get rid of document map in reports

there is a tree on the left hand side of my report ,which I don't want it to
be there ,how can I hide that document map? is there a special paramter or
somehting that I have to pass?
thanks for yuor help.
ALIData regions (matrix, table, list, etc.), groupings (except chart groups
where Labels have a different meaning), and textboxes have a property called
Label. If the Label property is set on any of these and the expression
returns a value != null, the document map will show up.
You can open an RDL file in a XML editor, report designer code view, or
notepad and just search for <Label> elements and remove them if you don't
want them. However, make sure to *not* remove <Label> elements on report
parameters or on chart groupings (because these are the labels shown inside
the chart).
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"ALI-R" <newbie@.microsoft.com> wrote in message
news:%23IuNuXl3EHA.3504@.TK2MSFTNGP12.phx.gbl...
> there is a tree on the left hand side of my report ,which I don't want it
to
> be there ,how can I hide that document map? is there a special paramter
or
> somehting that I have to pass?
> thanks for yuor help.
> ALI
>|||thanks for the information.now it is working
"Robert Bruckner [MSFT]" <robruc@.online.microsoft.com> wrote in message
news:u$bxhdl3EHA.3504@.TK2MSFTNGP12.phx.gbl...
> Data regions (matrix, table, list, etc.), groupings (except chart groups
> where Labels have a different meaning), and textboxes have a property
called
> Label. If the Label property is set on any of these and the expression
> returns a value != null, the document map will show up.
> You can open an RDL file in a XML editor, report designer code view, or
> notepad and just search for <Label> elements and remove them if you don't
> want them. However, make sure to *not* remove <Label> elements on report
> parameters or on chart groupings (because these are the labels shown
inside
> the chart).
> --
> This posting is provided "AS IS" with no warranties, and confers no
rights.
>
> "ALI-R" <newbie@.microsoft.com> wrote in message
> news:%23IuNuXl3EHA.3504@.TK2MSFTNGP12.phx.gbl...
> > there is a tree on the left hand side of my report ,which I don't want
it
> to
> > be there ,how can I hide that document map? is there a special
paramter
> or
> > somehting that I have to pass?
> >
> > thanks for yuor help.
> > ALI
> >
> >
>

Wednesday, March 7, 2012

How to get number of records returned by a data set?

Hi,
I am looking for a way to determine a number of records returned by my
dataset. The ultimate goal is to hide a table and dispaly informative
message, in case there are no records returned. This should be fairly
simple, but I can't seem to figure out how to get it. Thank you in advance!
MichaelYou can get it using the Count function. The sintaxis is:
=Count(Fields!some_field.Value, "Your_dataset")
You can use this to display the number of rows of a data set in a textbox.
You can also use it as a condition inside an IFF clause:
=IIF(Count(Fields!some_field.Value, "Your_dataset") = 0, action1, action2)
I hope this helps|||Works like a charm! Thank you very much!
- Michael