cancel
Showing results for 
Search instead for 
Did you mean: 

Table Header Vertically

Former Member
0 Kudos

Hello,

I have a report where the user wants to align the report header vertically.

Please see example in the attached document.

Please help.

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Gaurav,

State_Vertical = Substr(NameOf([State]);5;1)+Char(10)+Substr(NameOf([State]);4;1)+ Char(10) + Substr(NameOf([State]);3;1) +  Char(10)  +  Substr(NameOf([State]);2;1)

+char(10) +  Substr(NameOf([State]);1;1)

Amount_Vertical = Substr(NameOf([Amount]);6;1)+Char(10)+Substr(NameOf([Amount]);5;1)+ Char(10) + Substr(NameOf([Amount]);4;1) +  Char(10)  +  Substr(NameOf([Amount]);3;1)

+char(10) +  Substr(NameOf([Amount]);2;1) +char(10) +  Substr(NameOf([Amount]);1;1)

Answers (2)

Answers (2)

Former Member
0 Kudos

Gaurav,

Create a variable

State_Vertical ="<html><font style="+Char(34)+"writing-mode: tb-rl; filter: flipv() fliph();"+Char(34)+">"+ NameOf([State]) +"</font></html>"

Amount_Vertical: = "<html><font style="+Char(34)+"writing-mode: tb-rl; filter: flipv() fliph();"+Char(34)+">"+ NameOf([Amount]) +"</font></html>"

Save and Export. Open BI launchpad and check.

But this HTML tags are working in IE. For Mozilla and Chrome it's not.

Former Member
0 Kudos

Hi Gaurav,

There is no option in webi to display header as vertical as shown above

but you can do manually cell by cell by using image component

take the print screen of header cell  in image mode and turn its as vertical  and save it, now it will display like bellow

RT click on Header  Cell --> format cell --> Appearance  --> image from file > browse and choose the

Image and it will display like below

Regards,

Mahi

arijit_das
Active Contributor
0 Kudos

You can try this (not reliable though) :

I tested the same in IE 9 - it works. But with Firefox 21, does not work