I have a column in a BO report that has the Location full name in it.
Example of Location Full Name-
/NA/USA/ORD/CS-B343/Z4/
/AP/Australia/ADL/
This columns is understood as-
Region- NA
Country- USA
Location- ORD
Room- CS-B343
Cabinet- Z4
This columns is pulled from the database as is and as defined in the Universe. As you can see that the character count varies too.
Now in the BO report we need to split this column and have it split to different columns Region , Country , Location , Room , Cabinet
Quite much similar to the text to columns in Excel which is “/” delimited.
Can anyone suggest a way how to achieve this in a Webi report?
We will not be making any changes at the designer level therefore looking at option to do this at the webi report stage.
I think the replace function would work for you - you could try changing the “/” to a carriage return or CR/LF (chr10 / chr13) and allow your field to stretch… some fonts will display a box for the special character, may have to experiment.
Thanks for your reply.
We are using the web version only for report design, I believe I can use carriage return or CR/LF (chr10 / chr13) only in the thick client?
Also we will not be able to make any changes to the Universe.
Thanks, I was able to get the Region , Country , Location , Room , Cabinet in new line using the Replace and Char(13)
Formula- =Replace([Location Full Name];“/”; Char(13))
However now how do I get these Region , Country , Location , Room , Cabinet in different columns? Just like the Texts to Columns in Excel.