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
sushsush 

Integration

How to save data from Salesforce to excel sheet whenever an account is created or updated.You can reply me to mail2sush3@yahoo.co.in. Thanks in advance.
mtbclimbermtbclimber
You can export reports to an excel file and you can use the Apex Data Loader to export data from salesforce to a CSV file but you can not produce either of these directly as a result of a save event in salesforce.

You could create another object and push specific fields into it with a trigger each time an account is created or updated and from there you could write an scontrol to produce a csv/excel file upon request or you could just use the report export feature at that point.

sushsush

How can we transfer data from a custom object to a csv file using s-controls and triggers.