Hello
i have to extract numbers from a string in Col G (varying rows) the data looks like this
[TABLE="width: 174"]
<colgroup><col></colgroup><tbody>[TR]
[TD][TABLE="width: 268"]
<colgroup><col></colgroup><tbody>[TR]
[TD]Width = 760, Depth = 350[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]Width = 1610, Height = 50, Depth = 16[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]Width = 1610, Depth = 350
my formula in col H[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
</tbody>[/TABLE]
MID(LEFT(G80,FIND(",",G80)-1),FIND("=",G80)+1,LEN(G80)) returns the first part i.e. 760; 1610; 1610
what formula can I use to return (in Col I) the second occurrence i.e. 350; 50; 350
your help will really be appreciated.
i have to extract numbers from a string in Col G (varying rows) the data looks like this
[TABLE="width: 174"]
<colgroup><col></colgroup><tbody>[TR]
[TD][TABLE="width: 268"]
<colgroup><col></colgroup><tbody>[TR]
[TD]Width = 760, Depth = 350[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]Width = 1610, Height = 50, Depth = 16[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]Width = 1610, Depth = 350
my formula in col H[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
</tbody>[/TABLE]
MID(LEFT(G80,FIND(",",G80)-1),FIND("=",G80)+1,LEN(G80)) returns the first part i.e. 760; 1610; 1610
what formula can I use to return (in Col I) the second occurrence i.e. 350; 50; 350
your help will really be appreciated.