I'm struggling to find any resources on how to successfully format this data accordingly.
I have the json string, but at this point I can only insert it into a message box, and I have not in the slightest clue how to move forward.
I've seen people do something like this, but I would appreciate some guidance to get to that point. Thanks in advance.
ws.Cells(1, 1) = "Induct"
ws.Cells(1, 2) = "Rebin"
ws.Cells(1, 3) = "Pack"
For Each item In jsonObject
ws.Cells(i, 1) = item("Induct")
ws.Cells(i, 2) = item("Rebin")
ws.Cells(i, 3) = item("Pack")
i = i + 1
Next```