Page 1 of 1

Column Layout of Cross Tab

Posted: Wed May 13, 2009 6:14 am
by maof
Hi,

i've got a Cross Tab like

Code: Select all

--------------------
|   | 1 | 2 | 3 | 4 |
--------------------
| a |   |   |   | x |
--------------------
| b |   | y |   |   |
---------------------
| c |   |   | z |   |
---------------------
Is it possible to adjust the layout of an entire colum, depending on the value of the column header, i.e. if column header value == 2 then highlight entire column?

thanks in advance

Column Layout of Cross Tab

Posted: Wed May 13, 2009 5:35 pm
by Edward
Hi

Yes, it is possible. You have to place in the Tag property of the cell in CrossTab an expression which calculates your Column value, i.e. {myDataSource.MyDataColumnForcolumnHeader}. Then in the Conditions property of the same cell in the CrossTab you can write a condition for analysing of that Tag value:

tag == 2

And change colour of the the font to red.

When the condition is succeed, colour of the cell's font became red.

Thank you.

Column Layout of Cross Tab

Posted: Thu May 14, 2009 1:48 am
by maof
I thought about that solution. Unfortunately not every cell contains data and consequently i cannot change the layout of all cells. Layout of empty cells stays the same.

Column Layout of Cross Tab

Posted: Thu May 14, 2009 1:55 am
by Edward
Hi

Unfortunately only this way is possible right now.

Thank you.