Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!
The Product Idea boards have gotten an update to better integrate them within our Product team's idea cycle! However this update does have a few unique behaviors, if you have any questions about them check out our FAQ.

Alteryx Designer Desktop Ideas

Share your Designer Desktop product ideas - we're listening!
Submitting an Idea?

Be sure to review our Idea Submission Guidelines for more information!

Submission Guidelines

Allow search paths for XML parse

To navigate through XML document you need several parse tools to drill down to an element because you can only use element names

 

It would be nice if you case use an xml path (xpath) because of the rich syntax.

 

With xpath, we could specify ship_to/address/city or bill_to/address/city

4 Comments
JohnJPS
15 - Aurora

Good idea.  A workaround for the time being is to use the R tool... this worked for me on some dummy data:

 

library(XML)

rawData <- read.Alteryx("#1", mode="data.frame")
xmlData <- xmlParse(rawData[1,1],asText=T)

billTo <- xmlToDataFrame(getNodeSet(xmlData,"//bill_to//address"))
shipTo <- xmlToDataFrame(getNodeSet(xmlData,"//ship_to//address"))
addrData <- rbind(billTo,shipTo)

write.Alteryx(addrData, 1)

 

markp201
8 - Asteroid

Neat idea and I have a good reason to ramp up with R.  Thanks

Community_Admin
Alteryx
Alteryx
Status changed to: Inactive
 
Community_Admin
Alteryx
Alteryx

The status of this idea has been changed to 'Inactive'. This status indicates that:

 

1. The idea has not had activity in the form of likes or comments in over a year.

2. The idea has not reached ten likes.

3. The idea is still in the 'New Idea' status. 

 

However, this doesn't mean your idea won't be implemented! The Community can still like and comment on this idea. With enough renewed interest, this idea can be brought back into the 'New Idea' status. 

 

Thank you for contributing to the Alteryx Community and the Alteryx Product Idea Boards!