Hi,
I have a column that looks like this below:
XYZ - Mumbai - Apple
ABC - Delhi - Ball
DEF - Kolkata
GHI - Chennai
And I want to split the above column into two columns:
[Column 1] [Column 2]
XYZ Mumbai - Apple
ABC Delhi - Ball
DEF Kolkata
GHI Chennai
So I want to use only the first dash as the delimiter. Can someone please guide me?
Thanks.