Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Ciao a tutti,
ho una tabella come questa (listino di vendita) con articoli e prezzi che cambiano per data.
Come faccio a creare in Qlik una nuova tabella con solo il prezzo di listino più recente suddiviso per articolo?
Grazie, Maurizio
If you have access to the script, start by adding this, this will ease for the object:
left join (miaTabella) load articolo,max(data) as data,1 as piuRecenteData Resident miaTabella Group By articolo;
Then, if your object you can use a set analysis to keep only the more recent:
only({<piuRecenteData={1}>}prezzo)
Hi @Maury_19 ,
Maybe this in your chart object as price expression:
FirstSortedValue( prezzo, -data )
I hope it can helps.
Best Regards
You want this in a script or in a sheet object, and in any case, do you have access to the script?
meglio in un oggetto di lavoro (comunque ho accesso allo script)
If you have access to the script, start by adding this, this will ease for the object:
left join (miaTabella) load articolo,max(data) as data,1 as piuRecenteData Resident miaTabella Group By articolo;
Then, if your object you can use a set analysis to keep only the more recent:
only({<piuRecenteData={1}>}prezzo)
Hi @Maury_19 ,
Maybe this in your chart object as price expression:
FirstSortedValue( prezzo, -data )
I hope it can helps.
Best Regards
Grazie a tutti, dovrebbe funzionare.
Avrei trovato anche una soluzione tramite funzione: la testo, se è ok la posto qui.