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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
jagdishbr
Contributor III
Contributor III

Migration of Excel VBA to Qlikview Solution.

I'm trying to Migrate Excel VBA automation to Qlikview solution and here is the challenge. Is possible to attain the Output Required.

If yes, can you please help with steps to follow.

Subject.JPG

1 Reply
Anil_Babu_Samineni

You can try like below with in Qlikview

Sample:

Load * Inline [

ID12, Subject, Act, Attendee, Com

100|1, Leverage, Expert, Andrew, Ranbaxy

100|1, Leverage, Expert, Milton, Ranbaxy

];

Right Join

LOAD  ID12, Subject, Act, Concat(Attendee, ' | ') as Attendee, Com Resident Sample Group By ID12, Subject, Act, Com ;    

OR

Sample:

Load * Inline [

ID12, Subject, Act, Attendee, Com

100|1, Leverage, Expert, Andrew, Ranbaxy

100|1, Leverage, Expert, Milton, Ranbaxy

];

Final:

NoConcatenate

LOAD  ID12, Subject, Act, Concat(Attendee, ' | ') as Attendee, Com Resident Sample Group By ID12, Subject, Act, Com ;

Drop Table Sample;

Capture.PNG

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