Forum Discussion
Accessing Description in AzureDevops from PowerBI via oData API?
Change the last step in the process from
#"Remove HTML from Acceptance Criteria" = Table.AddColumn( #"Add lf for li (AC)","Acceptance Criteria", each Text.Combine(Html.Table([VSTS.fields.Microsoft.VSTS.Common.AcceptanceCriteria],{{"AC",":root"}})[AC],"#(lf)"))
to
#"Remove HTML from Acceptance Criteria" = Table.AddColumn( #"Add lf for li (AC)","Acceptance Criteria", each if [VSTS.fields.Microsoft.VSTS.Common.AcceptanceCriteria] = null then null else Text.Combine(Html.Table([VSTS.fields.Microsoft.VSTS.Common.AcceptanceCriteria],{{"AC",":root"}})[AC],"#(lf)"))Essentially, the change checks if the original value is null and if it is, it keeps it as null (or you can change it to any other value, like "No acceptance criteria provided", otherwise it strips the html out.
That should resolve the issue you're having.
Thanks for pointing that out. I have updated the referenced article above also with the fix.
Thank you, it is working as expected… my Final Ask.... is it possible to pull the extract data for more than one projects with in Same Organization
- ferryv3 years agoResolver II
I don't see any reason why you shouldn't be able to, although I have not worked through that specific scenario.
I wrote an article on Linkedin a while back on how to retrieve data from multiple Azure DevOps organisations - Link to the article. This also works across different projects and area paths within a single Azure DevOps organisation.
If you read through this and modify the example in that article with the code to retrieve longtext fields, you should be good to go.
- Anonymous3 years agoNot applicable
Thank you for your response. I haven't seen this article earlier.... the previous article helped me a lot.. ..i will go through this latest one...