Showing posts with label property. Show all posts
Showing posts with label property. Show all posts

Thursday, March 22, 2012

Analysis 2005 HideMemberIf

Hi,

I have implemented dimensions with members with name.
I want to hide these members and i have set the HideMemberIf property to "NoName".
However i still have the empty members that appear.

Level1
|_SubLevel 1
| |_Child 1
| |_Child 2
|_(empty)
| |_Child 3
|_SubLevel 2

does anyone have an idea?
thanksYou should set the memberswithdata to NonLeafDataHidden. It has nothing to do with the HideMemberIf setting.

Analysis 2005 HideMemberIf

Hi,

I have implemented dimensions with members with name.
I want to hide these members and i have set the HideMemberIf property to "NoName".
However i still have the empty members that appear.

Level1
|_SubLevel 1
| |_Child 1
| |_Child 2
|_(empty)
| |_Child 3
|_SubLevel 2

does anyone have an idea?
thanksYou should set the memberswithdata to NonLeafDataHidden. It has nothing to do with the HideMemberIf setting.

Saturday, February 25, 2012

AMO:Why KPI object has an AssociatedMeasureGroupID property?

Hi, friend, please look about this:

I just want to know Why KPI object has an AssociatedMeasureGroupID property?

I think it's very strange. Because the KPI object have a KPIValue and a KPIGoal, and each of them could associate to some measures. As we know,a measure is Under a Measuregroup. That is, a KPI will "associate" to many Measuregroups(2 at least).

Then what's the KPI.AssociatedMeasureGroupID property?

The AssociatedMeasureGroupID is for client applications and specifies the measure group to which the KPI is most strongly associated.

Adrian Dumitrascu

Thursday, February 9, 2012

Alternative Color

Does anyone know how to do alternative color row dynamically on reports? I
can do that in ASP.NET DataGrid.. but can't seem to find a property on
reporting server..Hi Zean,
You can alternate the color row of your tables putting the following
expression in the BackgroundColor property of the table or part of the table
you want :
=iif(RowNumber(Nothing) Mod 2 , "#F9F9F9","#EBEBEB" )
"Zean Smith" <nospam@.nospamaaamail.com> wrote in message
news:BfSdnRTl74eizsPenZ2dnUVZ_tCdnZ2d@.rogers.com...
> Does anyone know how to do alternative color row dynamically on reports?
I
> can do that in ASP.NET DataGrid.. but can't seem to find a property on
> reporting server..
>|||And in case, you don't have a simple table report item, but a matrix report
item you should check the following blog article:
http://blogs.msdn.com/chrishays/archive/2004/08/30/GreenBarMatrix.aspx
-- Robert
This posting is provided "AS IS" with no warranties, and confers no rights.
"Maria Isabel Henao" <dev@.hotmail.com> wrote in message
news:eVUEN%23Y2FHA.2444@.TK2MSFTNGP10.phx.gbl...
> Hi Zean,
> You can alternate the color row of your tables putting the following
> expression in the BackgroundColor property of the table or part of the
> table
> you want :
>
> =iif(RowNumber(Nothing) Mod 2 , "#F9F9F9","#EBEBEB" )
> "Zean Smith" <nospam@.nospamaaamail.com> wrote in message
> news:BfSdnRTl74eizsPenZ2dnUVZ_tCdnZ2d@.rogers.com...
>> Does anyone know how to do alternative color row dynamically on reports?
> I
>> can do that in ASP.NET DataGrid.. but can't seem to find a property on
>> reporting server..
>>
>