I have a Javascript page URL (snippet bellow). And I am looking for a way to make an individual excel cell link to what ever number appears on the corresponding URL.
So for example I have a cell which is for a_quantity_in_stock_S
and I want 2 to appear. Unless the Javascript page alters online.
var a_quantity_in_stock_S = 2
var a_quantity_in_stock_M = 2
var a_quantity_in_stock_L = 1
var b_quantity_in_stock_S = 2
var b_quantity_in_stock_M = 2
var b_quantity_in_stock_L = 1
Formula idea:
1) Look for var a_quantity_in_stock_S
through URL.
2) Pick number that it is equal to. (2)
3) Put the number (2) on the cell which the function is applied too.
Is there a way to do this?