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
Static DevStatic Dev 

How to pull created date and createdby into a formula field

Hi,

I am trying to create a formula field of type date/time. On this formula field how can i pull both created date and created by onto this one field.
So that this new field can be pushed onto another field on another object.

Please let me know.

Thanks in Advance.
AshlekhAshlekh
Hi,

You are creating a formula which is data/time so it will contain Createddate and created by in one fields.

You have to create a text type formula in which you can contain both value
Static DevStatic Dev
Hi Ashlek, Thanks for the response so you are saying Merge or Conconate Createddate and Created by together in text field.

Please let me know i got it or missing something...
@anilbathula@@anilbathula@
Hi Static Dev,

Make your formula field return type as Text and use this formula.

Text(CreatedDate) +' '+CreatedBy.FirstName + CreatedBy.LastName

Thanks
Anil.B

Static DevStatic Dev
Thanks Anil....