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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Help in Scripting

Hi All,

I have a table as shown below:

ItemHeader 2Header 3
AMixedC1
AMixedC2
BMixedC1
CMixedC2

I wish to create the below table:

ItemHeader 2Test
AMixedY
BMixedN
CMixedN

Thanks,

Asma

10 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

I forgot giving the group by in Load statement

left join ( Data )

LOAD

Item,

[Header 2],

If(Count(Item)>1, 'Y', 'N') as Test

RESIDENT Data

GROUP BY Item, [Header 2];