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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Maximum Value in Script for different ID

Hi all,

I have data like

Table1:

IDValue

1

53
132
189
145
231
232
359
430
4-39
521
534
546
6-

I want

Table2:

IDValue
189
232
359
4-39
546
6-

How to do this in Script?

Script written :-

Table2:

Load Distinct ID,

          Max(Value) as New_Value

Resident Table1;


But its showing invalid expression on reload.

Any help?

Regards,

Anjali Gupta

12 Replies
Not applicable
Author

Thanks Tamil Nagaraj..

Not applicable
Author

Thanks Peter for the knowledge..

Regards,

Anjali Gupta

Not applicable
Author

Thanks Max for the help.