vba - how to extract the total issues from Jira to excel worksheet -


when i'm running code. error occur run-time error '9': subscript out of range shown. mistakes did ?

thisworkbook.sheets("jiraexcel").activate dim json object dim j integer set json = jsonconverter.parsejson(.responsetext)  j = 2 j = j json("total")  activesheet.cells(j, 1) = json("issues")(j)("fields")("customfield_10400") 


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -