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

How to apply firstsorted function for below case.

Dear All,

I have one requirement to find unique value.so please help me and check how we can do on script level.


INPUT:-

Input.PNG

Output:-

output.PNG

Labels (1)
1 Reply
sunny_talwar
MVP
MVP

May be like this

LOAD Company,

          Date(Max(Date)) as Date,

          FirstValue([Sales Person]) as [Sales Person]

FROM ....

Group By Company