Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
ester_pr
Partner - Creator
Partner - Creator

Join by dates

Hi,

I want to join tables

on table have costNamber, cost and date_of_updatd

and the oter have costNamber and date_of_debit,

of cuorse the cost shuold be attached to the cost of the date that in between the date_of_updatdes

how to do it when ther is one field of date?

is it better to do so in a script or in the object?

Thank you,

Ester

1 Reply
rohit214
Creator III
Creator III

tab1:

load

costNamber as costNamber_tab1,

cost ,

date((date_of_updatd),'DD/MM/YYYY')  as common_date

;

tab2:

load

costNamber as costNamber_tab2,

date( date_of_debit),'DD/MM/YYYY) as common_date

;

i hope  u understand .

Thanx and Regard

rohit