From: kent.eilers on
could someone kindly post the syntax that will return the value of the
current header value for a matrix? I want to pull this information
into the row cells to determine background color.

i assume it would be something like column.header.value...??

thanks
From: Bob on
The textbox which has the column header in it will have a name, which you can
refer to, eg my dynamic column header is in a textbox called source_value, so
I can put this in my BackColor property:

=Iif(Fields!source_column.Value="your_value", "Blue", "Transparent")

HTH
wBob

"kent.eilers(a)res-direct.com" wrote:

> could someone kindly post the syntax that will return the value of the
> current header value for a matrix? I want to pull this information
> into the row cells to determine background color.
>
> i assume it would be something like column.header.value...??
>
> thanks
>
From: kent.eilers on
On Jun 16, 11:33 am, Bob <B...(a)discussions.microsoft.com> wrote:
> The textbox which has the column header in it will have a name, which you can
> refer to, eg my dynamic column header is in a textbox called source_value, so
> I can put this in my BackColor property:
>
> =Iif(Fields!source_column.Value="your_value", "Blue", "Transparent")
>
> HTH
> wBob
>
> "kent.eil...(a)res-direct.com" wrote:
> > could someone kindly post the syntax that will return the value of the
> > current header value for a matrix?  I want to pull this information
> > into the row cells to determine background color.
>
> > i assume it would be something like column.header.value...??
>
> > thanks

Thanks!