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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Map fields together

I have tables LinkDate and DATA_NEW tables. I would like to link the reporting_date of LinkDate to DATE of DATA_NEW. However, I do NOT want to change the DATE of DATA_NEW to reporting_date because this would break my dashboard in many places. How can I do this linkage? thank you

1 Reply
marcus_sommer

You could just double your DATE field and rename it to create the connection, something like:

DATA_NEW:

load *, DATE as reporting_date from Source;

- Marcus