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
DnyaneshwarDnyaneshwar 

Transfer Lead History tracking section from Lead to Account

I was wondering if there is any way i can transfer lead history tracking section data to account record when that lead gets converted to account.
eg. I have lead with lead History section. Now this lead gets converted to account then this new account record should show Lead histroy section.
 Any suggestions?
karthikeyan perumalkarthikeyan perumal
Hello, 

I dont think its possible using point click, but its possible using Visulaforce Developement. 

Follow below steps. its just a rough idea not eaxct code .. 

1. create new visualforce page that used to retrive the lead that converted to account. 
use below query to to get the History of the Lead converted in to account. 

 SELECT Id, FirstName,LastName, ConvertedDate frokm Lead where ConvertedAccountId=AccountID

2. show the results in to table format. 

3. create a new section in account page and add  lead history page in to this section .

Hope this will help you. 

Thanks
karthik