I need to copy entire website (in chrome) and put it in a specific place in excel using VBA. I'm trying to create a distance matrix so I work with files looking as this example:
{
"destination_addresses" : [
"Bratislava, Slovak republic"
],
"origin_addresses" : [
"Vienna, Austria"
],
"rows" : [
{
"elements" : [
{
"distance" : {
"text" : "79,1 km",
"value" : 79100
},
"duration" : {
"text" : "0 hours, 54 minutes",
"value" : 3240
},
"status" : "OK"
}
]
}
],
"status" : "OK"
}
After copying web content I can extract only distance and duration and insert it in a table.