E
eddyrapps
I have a column in a spreadsheet containing the following type of
string:
330189149967 Ideal - Series 2 (DVD) 3 12.99 GBP 38.97 GBP
I would like to extract the number after the (DVD) in this string.
However, the set of characters (DVD) does not always appear in the
string. The only thing that is always constant is the number of spaces
before the 3 on the right of the string. So I think the best way to
extract the number is count 4 spaces from the right and return the
number after the 4th space. This number could also be more than 1
character which might make things difficult.
Any ideas?
Thanks
R
string:
330189149967 Ideal - Series 2 (DVD) 3 12.99 GBP 38.97 GBP
I would like to extract the number after the (DVD) in this string.
However, the set of characters (DVD) does not always appear in the
string. The only thing that is always constant is the number of spaces
before the 3 on the right of the string. So I think the best way to
extract the number is count 4 spaces from the right and return the
number after the 4th space. This number could also be more than 1
character which might make things difficult.
Any ideas?
Thanks
R