Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Text object in verticle value

Hi All,

Kindly please share the value should in vertically.

Ex:

Year

2014,2015,2016

O/P

2014

2015

2015

Thanks

Labels (1)
4 Replies
Anil_Babu_Samineni
MVP
MVP

Use

Concat(Year,Chr(10))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

Great help,Thanks you

Anil_Babu_Samineni
MVP
MVP

Please close this thread by flag Correct answer. And i recommend you to search on community rather creating the Thread

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
ahaahaaha
Partner - Master
Partner - Master

Hi,

If it's in a script, then as an variant

Table1:

LOAD*Inline

[Year

'2014, 2015, 2016'

];

Left Join

LOAD*,

SubField(Year, ',', IterNo()) as NewYear

Resident Table1

While IterNo() <= SubStringCount(Year,',')+1;

Drop Field Year;