JSON Converssion Question

Alan B

New Member
Joined
Jan 17, 2009
Messages
14
I can successfully parse the CA Agile Rally API to return information into a worksheet, but the information returned in the description field is full of HTML tags. Is there any way to pull or publish the data in that field without the HTML tags?

Sample Code:
URL = "https://rally1.rallydev.com/slm/webservice/v2.0/hierarchicalrequirement?query=(FormattedID%20=%20" & RequestNumber & ")&pagesize=20&fetch=FormattedID,Name,Description,Project,ScheduleState,Iteration,Release,c_ActualRelease,c_Requestorname,c_Region,c_BookingChannel,c_GDS,LastUpdateDate"


HTTP.Open "GET", URL, False
HTTP.SetRequestHeader "authorization", secHeader
HTTP.Send

jsonText = HTTP.ResponseText

Set json = JsonConverter.ParseJson(jsonText)

w2.Cells(x, 1) = json("QueryResult")("Results")(x)("FormattedID")
w2.Cells(x, 2) = json("QueryResult")("Results")(x)("Name")
w2.Cells(x, 3) = json("QueryResult")("Results")(x)("Description")


Any help or guidance would be greatly appreciated


 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.

Forum statistics

Threads
1,213,543
Messages
6,114,245
Members
448,555
Latest member
RobertJones1986

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top