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
Hari.gsHari.gs 

Created Date

 

Hi,

 

My requirment is to store only the Created Date in a separate field in Lead Object. Currently there is a field Created By in the Lead Object which contains Name and Date. Is there any simple method to store only the created date value in a separate field?

 

Thanks

Hari G S

Best Answer chosen by Admin (Salesforce Developers) 
jd123jd123

Hi

 

You can create a formula field with DATEVALUE(CreatedDate) date and return type is Date.

 

If your question is resolve please mark it as accept as a solution, If not please let me know. 

All Answers

jd123jd123

Hi

 

You can create a formula field with DATEVALUE(CreatedDate) date and return type is Date.

 

If your question is resolve please mark it as accept as a solution, If not please let me know. 

This was selected as the best answer
Jia HuJia Hu
try use a Formula Custom Field with Date type
and set the value as DATEVALUE(CreatedDate)
Hari.gsHari.gs

 

Thanks.....:)