Hi,
I'm cleaning up some data. I have some fields like this:
LSKFJ(38) (513 Rating)
SDFSDFSDFSD(2352) (71 Rating)
FS(37) (53 Rating)
I want to remove the rating portion from this column and place it into another column. So the first column would look like this:
LSKFJ(38)
SDFSDFSDFSD(2352)
FS(37)
And the second column looks like this:
(513 Rating)
(71 Rating)
(53 Rating)
I've played around with the RIGHT() and FIND() functions, but I haven't managed to achieve what I'm looking for.
Any help on this is greatly appreciated.
Bookmarks