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
Tania ChatterjeeTania Chatterjee 

I have created a custom field -( acc date) of date data type which is formula field tracking the value of (created by) field that is in system information section , and now what i want to find out is to convert the value of (acc date) to string.

User-added image
Abhilash Mishra 13Abhilash Mishra 13
If you want this formula field as Text (string) Type just use :
TEXT(DATEValue(createdbyDate))
if you are converting Date to Text in apex class, string.valueof() method will work.

Let me know if you need more help with this.

Thanks