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: 
Ayden
Contributor III
Contributor III

Capture specific Date

Hello I have data that contains Balance amount which changes daily. I would like to capture the balance amount at the end of each month. Such as a snapshot date or something.

Data looks like this

 

LOAD

PART,

POSTINGPERIOD,

FINANAICAL FISCAL YEAR,

QTY,

BALANCE AMOUNT 

 

FROM XYZ(

Labels (2)
1 Reply
sidhiq91
Specialist II
Specialist II

@Ayden  First you can create a variable

Let Vmonthend = Monthend(Today());

Then in your Load Script you can use the variable something like below:

LOAD

PART,

POSTINGPERIOD,

FINANAICAL FISCAL YEAR,

QTY,

BALANCE AMOUNT 

 

FROM XYZ

Where POSTINGPERIOD='$(Vmonthend )';

If this resolves your issue, please like and accept it as a solution.