Need to extract specific XML data from a cell in excel
Closed
alvin07
Posts
1
Registration date
Tuesday 7 January 2014
Status
Member
Last seen
7 January 2014
-
7 Jan 2014 à 12:38
SM - 1 Apr 2019 à 05:59
SM - 1 Apr 2019 à 05:59
Related:
- Need to extract specific XML data from a cell in excel
- How to copy data from one excel sheet to another - Guide
- How do i find a specific video on youtube - Guide
- Export data from excel - Guide
- Excel move data from one sheet to another - Guide
- Extract audio from video vlc - Guide
1 response
venkat1926
Posts
1863
Registration date
Sunday 14 June 2009
Status
Contributor
Last seen
7 August 2021
811
9 Jan 2014 à 00:37
9 Jan 2014 à 00:37
In B1 type the formla
=SEARCH("storeid",A1)
C1 the formula is
=SEARCH("storeid",A1,B1+1)
in D1 the formula is
=MID(A1,B1+LEN("storeid")+1,C1-B1-LEN("storeid")-3)
D1 will give you what you want,. (00019)
It is possible to combine all the three formula and give one formula
but this is easier to debug.
=SEARCH("storeid",A1)
C1 the formula is
=SEARCH("storeid",A1,B1+1)
in D1 the formula is
=MID(A1,B1+LEN("storeid")+1,C1-B1-LEN("storeid")-3)
D1 will give you what you want,. (00019)
It is possible to combine all the three formula and give one formula
but this is easier to debug.
1 Apr 2019 à 05:59