Hi everyone,
I am interested in extracting the 2 "Longevity" and "Sillage" tables from the link below in excel using VBA:
Burberry Brit for Men Burberry cologne - a fragrance for men 2004
Currently, I am able to do so using the following code:
Longevity = doc.getElementsByTagName("tbody")(0).innerText
Sillage = doc.getElementsByTagName("tbody")(2).innerText
The issue is that these are extracted in a single cell along with the description words. Is it possible to get each value (numbers only) in a separate cell?
Much appreciated in advance!
I am interested in extracting the 2 "Longevity" and "Sillage" tables from the link below in excel using VBA:
Burberry Brit for Men Burberry cologne - a fragrance for men 2004
Currently, I am able to do so using the following code:
Longevity = doc.getElementsByTagName("tbody")(0).innerText
Sillage = doc.getElementsByTagName("tbody")(2).innerText
The issue is that these are extracted in a single cell along with the description words. Is it possible to get each value (numbers only) in a separate cell?
Much appreciated in advance!