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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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.