Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Emy_21
Contributor
Contributor

Getting the salary of the previous period

Bonjour Communauté Qlik,

Je travaille actuellement sur un script Qlik Sense où je charge des données à partir d'un fichier QVD (Payroll.qvd) pour créer une table nommée Payroll_Previous. Dans cette table, j'ai introduit un champ calculé nommé PREVIOUS_PERIOD en fonction de certaines conditions.

Mon objectif est de joindre cette table à une autre table, Payroll en utilisant le Code_Section comme clé commune. De plus, je souhaite récupérer le Salary_Amount de la période précédente (PREVIOUS_PERIOD).

J'ai déja crée un champ PREVIOUS_PERIOD et je veux recupérer le salaire correspondant à cette periode.

Voici mon script : 

 

Payroll:
LOAD
AutoNumberHash128(Payroll.NUDOSS, Payroll.MATRIC,Payroll.NUMBUL, Payroll.PERPAI) as [Payroll Key],
Payroll.NUDOSS as [Payroll_NUDOSS],
Payroll.MATRIC as MATRIC,
Payroll.CODRUB as Section_Code,
Payroll.MONSAL as Salary_Amount,
Payroll.PERPAI as PERIOD
FROM [$(GetLinkQDS)/Payroll.qvd] (qvd)
Where SubField(Payroll.PERPAI, 'MT', -1) >= 202212 and SubField(Payroll.PERPAI, 'MT', -1) <= 202306;

Payroll_tmp2:
NoConcatenate
LOAD
[Payroll Key],
[Payroll_NUDOSS],
MATRIC,
Section_Code,
PERIOD,
Salary_Amount,
If(Mid(PERPAI, 7, 2) = '01',
'MT' & Num(Mid(PERIOD, 3, 4) - 1) & '12',
'MT' & Num(Mid(PERIOD, 3, 4)) & Num(Mid(PERIOD, 7, 2) - 1, '00')
) as PREVIOUS_PERIOD
Resident Payrol;

 

Payroll_Previous:
NoConcatenate
LOAD
[Payroll Key],
[Payroll_NUDOSS],
MATRIC,
Section_Code as Prev_Section_Code,
Salary_Amount as Prev_Salary,
PREVIOUS_PERIOD
Resident Payroll_tmp2
ORDER BY MATRIC, PREV_PERIOD DESC;

Payroll_Final:
NoConcatenate
LOAD
*
Resident Payroll_tmp1
ORDER BY MATRIC, PERIOD, Section_Code DESC;

LEFT JOIN
LOAD
[Payroll Key],
[Payroll_NUDOSS],
MATRIC,
Prev_Section_Code,
Prev_Salary,
PREVIOUS_PERIOD
Resident Payroll_Previous
ORDER BY MATRIC, PREVIOUS_PERIOD, Prev_Section_Code DESC;

DROP TABLE Payroll, Payroll_tmp2, Payroll_Previous;


STORE Payroll_Final INTO [$(StoreLinkETL)/Payroll_Final.qvd] (qvd);

 

 

Please provide your solutions ASAP !

Thank you 

Labels (2)
2 Replies
F_B
Specialist
Specialist

Bonjour Emy_21,

is your script working as you expected?

Emy_21
Contributor
Contributor
Author

No it is giving me the same salary in both fields.