Hi Guys,
So I have run a web Query using a .iqy text file which is pulling data from a popular cryptocurrency site called CoinMarketCap.
I am using api links for individual coins in order to get there price is USD updated every minute to try and track in an excel ticker.
An example of a url is: https://api.coinmarketcap.com/v1/ticker/steem/
When I run the web query it returns the below in my excel sheet:
[
{
"id": "steem",
"name": "Steem",
"symbol": "STEEM",
"rank": "78",
"price_usd": "0.1935110207",
"price_btc": "0.00002029",
"24h_volume_usd": "4120576.12869",
"market_cap_usd": "69524222.0",
"available_supply": "359277842.0",
"total_supply": "376251936.0",
"max_supply": null,
"percent_change_1h": "1.01",
"percent_change_24h": "3.14",
"percent_change_7d": "17.65",
"last_updated": "1580923443"
}
]
I want to be able to extract the price_usd to use to multiply other cells by and I can't figure out how to extract values from the query without stopping it from updating.
Any help please?
So I have run a web Query using a .iqy text file which is pulling data from a popular cryptocurrency site called CoinMarketCap.
I am using api links for individual coins in order to get there price is USD updated every minute to try and track in an excel ticker.
An example of a url is: https://api.coinmarketcap.com/v1/ticker/steem/
When I run the web query it returns the below in my excel sheet:
[
{
"id": "steem",
"name": "Steem",
"symbol": "STEEM",
"rank": "78",
"price_usd": "0.1935110207",
"price_btc": "0.00002029",
"24h_volume_usd": "4120576.12869",
"market_cap_usd": "69524222.0",
"available_supply": "359277842.0",
"total_supply": "376251936.0",
"max_supply": null,
"percent_change_1h": "1.01",
"percent_change_24h": "3.14",
"percent_change_7d": "17.65",
"last_updated": "1580923443"
}
]
I want to be able to extract the price_usd to use to multiply other cells by and I can't figure out how to extract values from the query without stopping it from updating.
Any help please?