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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Concatenating two different fields

Hi,

I need to create a field called Year-Month using the available fields Year and Month,the new field Year-Month must have values being concatenated from the existing column Year and month the values in Year-Month must be like 20009-Jan,20009-Feb,....

Can anyone please help me acheive this.Please find the attached document

4 Replies
mdmukramali
Specialist III
Specialist III

Dear,

Create a filed in the script,

                                       Year&'-'&My_Month as Year_Month

Thanks,

mukram.

Not applicable
Author

Thanks

Thanks & Regards,

Anushree Shetty

amars
Specialist
Specialist

Please check the attached file.

Thanks...

qlikpahadi07
Specialist
Specialist

LOAD Year,

     My_Month,

     Year &'-'& My_Month as YearMonth

FROM

(ooxml, embedded labels, table is Sheet1);