Hi All,
Requesting help in creating table format
I have a sample table like this:
ID | year |
123 | 2016 |
123 | 2017 |
123 | 2018 |
123 | 2019 |
456 | 2016 |
456 | 2017 |
456 | 2018 |
456 | 2019 |
I want the output to look like this
ID | 2016 | 2017 | 2018 | 2019 |
123 | 2016 | 2017 | 2018 | 2019 |
456 | 2016 | 2017 | 2018 | 2019 |
Solved! Go to Solution.
Thank you @atcodedog05 worked like a charm.
Happy to help : ) @Manjari
Cheers and have a nice day!