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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
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];