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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Pls Help on Below Question

Hi,

Please help on below question:

Test:

LOAD * INLINE [F1, F2, SALES

A, X, 4

A, Y, 2

A, X, 2

B, Y, 3];

OutPut Required:

F1, Sales

A,6

B,3

Please exclude  A, Y, 2 in Test Table.

Regards

Ravi

12 Replies
its_anandrjs
Champion III
Champion III

There is another way of doing this like load normal table and add key field

Test:

LOAD *,F1&F2 as Key;

LOAD * INLINE

[

F1, F2, SALES

A, X, 4

A, Y, 2

A, X, 2

B, Y, 3

];

And in straight table

Dimension:-F1

SET Expression:-  Sum({<Key -= {'AY'} >} SALES)

Not applicable
Author

hi,

he can take your response Massimo and he remove "noconcatenate" no ?

I tried it without "noconcatenate" and it works

regards

its_anandrjs
Champion III
Champion III

Hi Ravi,

If you got correct answer from the thread so mark the thread as Correct / Helpful.

Regards