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
Jorge Diaz 30Jorge Diaz 30 

Data Update Issue!

I have to revert Lead Data to "Old Value" -
I exported the Lead History for Updated Leads.
 
Looks like i need to parse out the Field Names out of " Field / Event" Column to create Column Headers though it is physically impossible for myself to do manually for 80k records!!!
 
Is there a faster less painful way to achieve this? We do not have Daily Data Backups.
 
Please do not contact me for "OwnB*ckUp" sale.
VinayVinay (Salesforce Developers) 
Hi Jorge,

Did you trying using dataloader?  Dataloader should be possible best way to update lead status with old values.

Thanks,
Arun Kumar 1141Arun Kumar 1141

Hi Jorge,

You can use Data Loader to make this process faster. 
Open Data Loader  -> Export Lead History Object ->  Extract necessary fields, including "Field / Event" and "Old Value" -> Open exported CSV file ->  Copy "Old Value" data to a new column  ->  Save the CSV file -> Use Data Loader to Update the Lead Records with CSV file.


Hope this will help!
Thanks