I'm having troubles with one of our tables, which i intend to use in viz tools. Maybe you could guide me on how to achieve below.
My table looks like this:
123 | ABC DEF
456 | GHI JKL MNO
789 | PRS
And I would like to split second column into rows and preserve value from first column:
123 | ABC
123 | DEF
456 | GHI
456 | JKL
456 | MNO
789 | PRS
Could you tell me how to achieve that? Thanks in advance. Cheers!