Hi,
I'm trying to use Zoho CRM's API to suck data directly into Excel using a web query. The data comes in XML format. When I pull the data into Excel, it comes like this:
The way I need the data to show in Excel is each "val" value be a column header, and each "FL" value be the actual data below the respective column. The "no" value represents the corresponding row for each data entry.
I should also note that I am not a programmer and I'm not using VBA to do this. I go to the Data tab, select "From Web," and insert my API request that way.
Anyone know how to do this? Please help as this has caused me endless frustration. Thank you!
I'm trying to use Zoho CRM's API to suck data directly into Excel using a web query. The data comes in XML format. When I pull the data into Excel, it comes like this:
Code:
uri no FL val
/crm/private/xml/Leads/getCVRecords 1 *the actual data* LEADID
/crm/private/xml/Leads/getCVRecords 1 *the actual data* SMOWNERID
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Lead Owner
/crm/private/xml/Leads/getCVRecords 1 *the actual data* First Name
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Last Name
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Phone
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Lead Status
/crm/private/xml/Leads/getCVRecords 1 *the actual data* SMCREATORID
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Created By
/crm/private/xml/Leads/getCVRecords 1 *the actual data* MODIFIEDBY
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Modified By
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Created Time
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Modified Time
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Description
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Email Opt Out
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Practice Area
/crm/private/xml/Leads/getCVRecords 1 *the actual data* 1 Source Type
/crm/private/xml/Leads/getCVRecords 1 *the actual data* 2 Source
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Location of Incident
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Attorney We Referred to
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Date Created
/crm/private/xml/Leads/getCVRecords 1 *the actual data* Date Appointment Scheduled
/crm/private/xml/Leads/getCVRecords 2 *the actual data* LEADID
/crm/private/xml/Leads/getCVRecords 2 *the actual data* SMOWNERID
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Lead Owner
/crm/private/xml/Leads/getCVRecords 2 *the actual data* First Name
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Last Name
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Phone
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Lead Status
/crm/private/xml/Leads/getCVRecords 2 *the actual data* SMCREATORID
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Created By
/crm/private/xml/Leads/getCVRecords 2 *the actual data* MODIFIEDBY
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Modified By
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Created Time
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Modified Time
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Description
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Email Opt Out
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Practice Area
/crm/private/xml/Leads/getCVRecords 2 *the actual data* 1 Source Type
/crm/private/xml/Leads/getCVRecords 2 *the actual data* 2 Source
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Location of Incident
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Attorney We Referred to
/crm/private/xml/Leads/getCVRecords 2 *the actual data* Date Created
/crm/private/xml/Leads/getCVRecords 3 *the actual data* LEADID
/crm/private/xml/Leads/getCVRecords 3 *the actual data* SMOWNERID
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Lead Owner
/crm/private/xml/Leads/getCVRecords 3 *the actual data* First Name
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Last Name
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Phone
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Lead Status
/crm/private/xml/Leads/getCVRecords 3 *the actual data* SMCREATORID
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Created By
/crm/private/xml/Leads/getCVRecords 3 *the actual data* MODIFIEDBY
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Modified By
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Created Time
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Modified Time
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Email Opt Out
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Practice Area
/crm/private/xml/Leads/getCVRecords 3 *the actual data* 1 Source Type
/crm/private/xml/Leads/getCVRecords 3 *the actual data* 2 Source
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Location of Incident
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Attorney We Referred to
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Date Created
/crm/private/xml/Leads/getCVRecords 3 *the actual data* Date Appointment Scheduled
The way I need the data to show in Excel is each "val" value be a column header, and each "FL" value be the actual data below the respective column. The "no" value represents the corresponding row for each data entry.
I should also note that I am not a programmer and I'm not using VBA to do this. I go to the Data tab, select "From Web," and insert my API request that way.
Anyone know how to do this? Please help as this has caused me endless frustration. Thank you!
Last edited: