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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Help me.

temp:

LOAD * INLINE [

    BA, ITS, BC

    BA1, ITS1, TIER0

    BA1, ITS2, TIER1

    BA2, ITS3, TIER1

    BA3

];

i have this table . i want to make.

BABC
BA1TIER0
BA2TIER1
BA3

PLEASE HELP ME TO SOLVE THE PROBLEM.    

5 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

Please provide more information about how you would like to get the result table (ie what rules determine the contents)? Also do you want to do this in script or in the front end?

Without that information I can only guess what you are trying to do.

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

You have to try to explain well your problem because in this way the answer is:

temp:

LOAD * INLINE [

    BA, BC

    BA1, TIER0

    BA2, TIER1

    BA3

];

Gio

MayilVahanan

Hi

Try like this

Temp:

LOAD * INLINE [

    BA, ITS, BC

    BA1, ITS1, TIER0

    BA1, ITS2, TIER1

    BA2, ITS3, TIER1

    BA3

];

Load BA, FirstValue(BC) as BC Resident Temp

Group by BA;

DROP Table Temp;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Clever_Anjos
Employee
Employee

PFA

Not applicable
Author

Thank you buddy....