How can I retrieve the EPS stock information from this website via Google Sheets? http://seekingalpha.com/symbol/KO
What I would like to output in Google Sheets is this value:
1.66
On the site I believe that the relevant XML Code to pull that information from is this:
<span class="right" id="qp_eps">1.66</span>
This Google Sheet formula does not return anything than an error:
=ImportXML("http://seekingalpha.com/symbol/KO/focus", "//span[@id='qp_eps'")


//span[@id='qp_eps']/text()also what if there are thousands ofspanelements with attributesid="qp_eps"- SomeDudeImportXML()? It looks to me like the original HTML has no span withid='qp_eps'. It must be added later by Javascript or something. Therefore it will not be loaded byImportXML(). - LarsH