Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
<simple question>
I am loading data from various tables.
I have 2 tables which are associated through Contact name.
When I select this data I would like to create a Max Score for every Customer name.
Any clue/hints is highly suggested?
</simple question>
Hi Omar,
Temp: LOAD [Customer name],[Contact name] FROM "https://community.qlik.com/message/1313701" (html, codepage is 1252, embedded labels, table is @1); Left Join LOAD [Contact name],Score FROM "https://community.qlik.com/message/1313701" (html, codepage is 1252, embedded labels, table is @2); LOAD [Customer name],Max(Score) as Score Resident Temp Group By [Customer name]; Drop Table Temp;
Regards,
Antonio