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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
vikasmahajan

how to load different same values in column

Dear all

I have following script

Load  * INLINE [

          Commentory,id

            AAAA,1

            BBBB,3

            CCCC,5

            DDDD,4

            EEEE,6

            AAAA,20

            BBBB,30

            CCCC,50

            DDDD,40

            EEEE,60

                    ];

I want to display   'AAAA','BBBB','CCCC','DDDD','AAAA','BBBB','CCCC','EEEE'   with combination of id .

Thanks

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
1 Solution

Accepted Solutions
vikasmahajan
Author

resolved with declaring variable  =Concat(Commentory , '|')

and use = ValueList( '$(v1)')  to display

Thanks all for your reply

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.

View solution in original post

7 Replies
Not applicable

Temp:

Load  * INLINE [

          Commentory,id

            AAAA,1

            BBBB,3

            CCCC,5

            DDDD,4

            EEEE,6

            AAAA,20

            BBBB,30

            CCCC,50

            DDDD,40

            EEEE,60

                    ];

Final:

Commentory&''&id as Combo

Resident Temp;

Digvijay_Singh

Use Concat(id,';') as expression and Commentory as Dimension in straight table

marcus_malinow
Partner - Specialist III
Partner - Specialist III

Vikas,

you could try using the dual() command.

LOAD dual(Commentary, id) as Commentaryid, *

tc..etc..

Marcus

pokassov
Specialist
Specialist

Hi!

You can hide column id in chart to achieve your goal

Anonymous
Not applicable

Hi Vikas,

Do you want commentary and id columns as one column or all values in commentary and id columns in same row?

vikasmahajan
Author

resolved with declaring variable  =Concat(Commentory , '|')

and use = ValueList( '$(v1)')  to display

Thanks all for your reply

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
pokassov
Specialist
Specialist

Hi!

Can you attach working example?