Hello everyone,
I would like your help with a quite tricky (in my opinion) vba project.
I would like to make an excel that willl contain the following columns
ISBN10 | AMAZON.CO.UK RRP | AMAZON.CO.UK FINAL PRICE
so basicaly what i want it to do is i put ISBN10 values in column A and in column B and column C excel through WinHttp.WinHttpRequest would go to amazon.co.uk that has url = http://www.amazon.co.uk/dp/[ISBN10] and will get the prices so for example:
so in the above case excel would go to url
http://www.amazon.co.uk/dp/0002247399
and would grab from the source this line
class="listprice">£25.00
and then this line
priceLarge">£12.50
if error occurs i.e. no prices then continue to the following
if only fianl price like this one http://www.amazon.co.uk/dp/3937718524 would only post this price.
I REALLY hope this is possible.
Thank you in advance
I would like your help with a quite tricky (in my opinion) vba project.
I would like to make an excel that willl contain the following columns
ISBN10 | AMAZON.CO.UK RRP | AMAZON.CO.UK FINAL PRICE
so basicaly what i want it to do is i put ISBN10 values in column A and in column B and column C excel through WinHttp.WinHttpRequest would go to amazon.co.uk that has url = http://www.amazon.co.uk/dp/[ISBN10] and will get the prices so for example:
Code:
A B C
ISBN10 RRP AMAZON FINAL PRICE
0002247399 25.00 12.50
http://www.amazon.co.uk/dp/0002247399
and would grab from the source this line
class="listprice">£25.00
and then this line
priceLarge">£12.50
if error occurs i.e. no prices then continue to the following
if only fianl price like this one http://www.amazon.co.uk/dp/3937718524 would only post this price.
I REALLY hope this is possible.
Thank you in advance