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: 
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