Hi all,
I have one file which contains the following:
Open order month// Open orders
Jan 2021 // 400
Feb 2024 // 100
Another one for closed orders:
Closed order month// Closed orders
Jan 2021 // 100
I am trying to get the following output:
Month // Open // Closed
Jan 2021 // 400 // 100
Feb 2024 // 100 // 0
I tried creating duplicate files, as the data was in one table only, and used full outer join - it does not work properly.
What other suggestions do you have?
Regards,
C