How do I get Amazon pricing information in Google Sheets?
3 answers
You must replace a; to make it work:
=importxml(hyperlink(concatenate("AMAZON_URL_HERE"));"//*[@id='priceblock_ourprice']")
You can also specify an element, for example:
=importXml("AMAZON_URL_HERE";"//span[@id='priceblock_ourprice']")
The syntax is explained here:
http://www.w3schools.com/xpath/xpath_syntax.asp
+1
source to share