I am using CR 2011 with a SQL Server database as my data source. I'm working for a startup who is developing a mobile app for hailing cabs. In the database there is a fare breakdown field that is in XML. Here is an example of the data:
<FareBreakdown xmlns:xsd=" xmlns:xsi="
I need a formula which allows me to break down each element into a column, so for each record, I can see the fare paid, the toll, service charge, extras, tip, bonus, etc, in a seperate field. I've never worked with XML before, so I have no idea how to convert it to something I can parse into seperate fields.
<FareBreakdown xmlns:xsd=" xmlns:xsi="
I need a formula which allows me to break down each element into a column, so for each record, I can see the fare paid, the toll, service charge, extras, tip, bonus, etc, in a seperate field. I've never worked with XML before, so I have no idea how to convert it to something I can parse into seperate fields.