Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Dear,
Create a filed in the script,
Year&'-'&My_Month as Year_Month
Thanks,
mukram.
Thanks
Thanks & Regards,
Anushree Shetty
Please check the attached file.
Thanks...
LOAD Year,
My_Month,
Year &'-'& My_Month as YearMonth
FROM
(ooxml, embedded labels, table is Sheet1);