Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Bonjoir,
HELP! Je voudrais selectionner les enregistrements du dernier jour de chaque MoisAnnée dans le script load.
Exemple:
date | enregistrement |
---|---|
01/08/2012 | text1 |
06/08/2012 | text2 |
01/09/2012 | text3 |
le resultat doit etre :
date | enregistrement |
---|---|
06/08:2012 | text2 |
01/09/2012 | text3 |
Merci d'avance
Thank you !
but it not working !
this solution work :
lOAD FirstSortedValue(date,-date) As date,FirstSortedValue(enregistrement,-date) As enregistrement Group by ((Year(date)&(Month(date)+0)));
Load Date#(date,'DD/MM/YYYY') As date,enregistrement Inline [
date,enregistrement
01/08/2012,text1
06/08/2012,text2
01/09/2012,text3 ];
Excusez moi mais j'ai pas bien saisie votre réponse !!
Salut,
i essayé de résoudre votre problème, trouver la pièce jointe.
Je le Google traduction pour comprendre, je l'espère traduire ainsi.
son conformément au tableau
trouver la pièce jointe
En ce qui concerne
Harshita Gaur
hello harshita gaur
Thanks for your help .
my probleme that: i have more than one data per MonthYear ( table 1 in my first comment)
and i need to get the last data ( information) linked to the last Day in every MonthYear and not the SUM ( table 2 )
all that in the script load qlikview not in the set analysis or expression or table!
hope that i was clear !
Thanks any way
salut,
trouver la pièce jointe, je hmake les données avec la même situation, appuyez sur Ctrl + E et vérifie le script.
en ce qui concerne
Harshita Gaur
Salut à nouveau,
désolé, je ne comprends pas votre question avant, se il vous plaît vérifier l'attachement
En ce qui concerne
Harshita gaur
Did you try my solution? Is it not giving your expected output in script?
This might work (I'm not sure though or if its what you want)
You could do max date by month
step1
data:
load table but also include
Monthend (date) as monthend
then step 2
join (data)
load
monthend,
max (date) as maxdateformonth
resident data
group by (monthend);
then
data2
noconcatenate
load
*
resident data
where (maxdateformonth = Date);
drop table data;
@RJ
thanks but is not working !