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: 
VishalWaghole
Specialist II
Specialist II

Please Urgent Help Required

Hi Community,


Please Help me Its Very urgent.

I have Data into 2 different sheets Like

Sheet 1

WebTopNum
Type         OpenError
1111PL1
2222BL
3333BL2

and Sheet 2

WebTopNum
Type         Status
1111PLOpen
2222BLClosed

I want Output Like this

Type
Raised
Open
PL11
BL2


In Output file Raised means OpenErrors from sheet1 and Open means Status from sheet2.


Thanks and Regards,


Vishal Waghole

3 Replies
Not applicable

Output:

LOAD

     Type,

     Status as Open

From Sheet1;

Left Join

LOAD

     Type,

     OpenError as Raised

From Sheet2

Where not IsNull(OpenError);

abeyphilip
Creator II
Creator II

Please see if the attached qvw helps.

Not applicable

see attached file

output like this

.

TypeRaisedOpen
PL11
BL20