Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Where clause and group by in single table


Hi Qlicker,

How to I write the code in the script for Where Clause and Group by  for single table...

i'm writing the script like

Load

EmpId ,

SeqNo

From

Table location;

From this I want to get the max seqNo


Thanks in advance..

12 Replies
anbu1984
Master III
Master III

Load EmpID, FirstSortedvalue([Serial No],-[Serial No]) As [Serial No], FirstSortedValue([Level Code],-[Serial No]) As[Level Code] group by EmpID;

Load

EmpID,
[Serial No],
    
[Level Code]
FROM

(
ooxml, embedded labels, table is Sheet1)

Clever_Anjos
Employee
Employee

It´s worked? Why you need another way?

Anonymous
Not applicable
Author


Thanks buddy........