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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Get the last event

Hi,

You will find enclosed a rental car project example (it's filled with excel files)

My goal is to create a graphic table filtered with only "fin location" event (done) and in wich one the column GestionnaireDossier is filled with the name present in GestionnaireDossier for the event "debut location" for the same car

Actual :

What I try to do :

I tryed with firstsortedvalue and rank parameter but i can't figure out how it works ...

Any help will be great ...

Thanks in advance

Labels (1)
1 Solution

Accepted Solutions
rubenmarin
MVP
MVP

Hi Christophe, check attachment to see if that's what you want.

View solution in original post

3 Replies
rubenmarin
MVP
MVP

Hi Christophe, check attachment to see if that's what you want.

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

Dimension: Marque, Modele, DateEvenement

Expression:

NomEvenement = FirstSortedValue({<NomEvenement={'Fin Location'}>}NomEvenement, -DateEvenement)

GestionnaireDossier =If(IsNull([NomEvenement]), Null(), MaxString(TOTAL <Marque>GestionnaireDossier))

Hops this helps you.

Regards,

Jagan.

Not applicable
Author

Works fine ! Thank you !