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

This widget could not be displayed.

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
agni_gold
Specialist III
Specialist III

Merge columns in excel.


Please help I want all the yellow color values in single column.

This widget could not be displayed.
2 Replies
stigchel
Partner - Master
Partner - Master

You can maybe use a crosstable in combination with a purgechar function to not load the numbers, if that is what you want like this

CrossTable(Children, Data,1)

LOAD Parent,

     PurgeChar(Child,'0123456789') as Child,

     PurgeChar(Child1,'0123456789') as Child1,

     PurgeChar(Child2,'0123456789') as Child2

FROM

Test11.xlsx

(ooxml, embedded labels, table is Sheet1);

This widget could not be displayed.
santhoo_san
Partner - Creator II
Partner - Creator II

you can use cross table as said by Piet above in combination with a purgechar function to not load the numbers, if that is what you want like this

CrossTable(Children, Data,1)

LOAD Parent,

    PurgeChar(Child,'0123456789') as Child,

    PurgeChar(Child1,'0123456789') as Child1,

    PurgeChar(Child2,'0123456789') as Child2

FROM

Test11.xlsx

(ooxml, embedded labels, table is Sheet1);

or use it in the object expression as done in the attachment.

This widget could not be displayed.