I am very new to VBA and I can not figure out how to get values from a Collection.
This is my code:
Dim p As Object Set p = JSON.parse(Response.Conte
Don't forget the bang operator, designed for collection access by key:
links(1)!rel
or:
links(1)![rel] 'When there are spaces or reserved words.