function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
cathy369cathy369 

export csv file

i'm a tad new to SF, and am attempting to export report detail into csv file without header line or footer info, just the actual detail data.  Is there an easy way to do this?

 

Thanks very much.

 

Cathy 

DataBeastDataBeast

The way I approached this was to pull the data you want into your language of choice and convert the business objects into some useable format which you then convert to CSV.

 

The process is something like this:

 

Connect to SalesForce

 

Query desired object data

 

Extract data from sObject

 

Format data in code

 

Export into comma delimited file

 

Message Edited by DataBeast on 02-19-2010 01:50 AM