I'm working on some VBA in Excel iterating through some JSON from Jira.
I'm receiving Runtime error 424, Object Required on the 4th line in the code block. I'm able to get the value of the expression in the line above it and I've verified that it is populated with a string. So, I'm misunderstanding something here but I can't see it. Can anyone offer suggestions or help?
Thanks!
For z = 1 To Issues.count
If (Not (Issues(z)("fields")("assignee")) Is Nothing) Then
devName = Issues(z)("fields")("assignee")("name")
>>>If (Not (Issues(z)("fields")("assignee")("name")) Is Nothing) Then
Set devRow = New CDeveloperStats
devRow.Name = devName
End If
End If
Next z