Substring in excel -
i have set of data shown below on excel.
r/v(208,0,32) yr/v(255,156,0) y/v(255,217,0) r/s(184,28,16) yr/s(216,128,0) y/s(209,171,0) r/b(255,88,80) yr/b(255,168,40) y/b(255,216,40)
and want separate data in each cell this.
r/v 208 0 32 r/s 184 28 16 r/b 255 88 80
what function in excel can use case. thank in advance.
kennytm's links dead , doesn't provide example here's how substrings:
=mid(text, start_num, char_num)
let's cell a1
hello
.
=mid(a1, 2, 3)
would return
ell
because says start @ character 2, e
, , return 3 characters.
Comments
Post a Comment