I've got this long string in cell A1 of a worksheet in Excel 2007: <table style="width: 930px; height: 47px;" border="0" cellpadding="0" cellspacing="0"><colgroup><col width="64"></colgroup><tbody><tr height="19"> <td class="xl63" style="height:14.4pt;width:48pt" height="19" width="64">{"1":{"7":"20"},"2":{"2":"6"},"3":{"4":"10"},"4":{"5":"15"},"5":{"1":"3"},"6":{"3":"9"},"7":{"6":"18"}}<wbr><wbr><wbr></td> </tr></tbody></table>and want to find text within individual pairs of curly braces.
Let's take the group {"5":"15"} as an example: I need to find the text {"5" and then hop to the right and return whatever text is between the following set of double quotes.
I think I can work with finding the first string using MID and FIND but cannot fathom out how to then jump to the adjacent pair of quotes to return what is within them.
Can anyone offer any suggestions please?
Let's take the group {"5":"15"} as an example: I need to find the text {"5" and then hop to the right and return whatever text is between the following set of double quotes.
I think I can work with finding the first string using MID and FIND but cannot fathom out how to then jump to the adjacent pair of quotes to return what is within them.
Can anyone offer any suggestions please?