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: 
mario-sarkis
Creator II
Creator II

Error

LOAD

[RMID] ,

Balance,

max(Date) as MaxPeriodDate

Resident Input

group by[RMID],PeriodMonth;

Drop table Input ;

Hey i am writing this in the Script it told me an Error:

"Invalid Expression"

what is wrong with it ?

Help please

11 Replies
Not applicable

Hi ,

try this

LOAD

[RMID] ,

Balance,

max(Date) as MaxPeriodDate

Resident Input

group by[RMID],Balance;

Drop table Input ;

in  group by we have to Qualify the all remaining fields which are are there in the Table 

antoniotiman
Master III
Master III

Hi Mario,

Try

Inner Join Load

[RMID],

Max(Date) as MaxPeriodDate

Resident Temp

Group By [RMID];

Besides, are You sure Date field is date Type ?