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
Matt de CamaraMatt de Camara 

Field to hold multiple date/time stamps

I need to create a field for a salesforce object that holds multiple date/time stamps. Each time an event happens, a date/time stamp will be added to the field. So this field is effectively a list of objects. I am unclear on how to do this. Any suggestions on workflow and specifically what data type this field would be are appreciated.
RituSharmaRituSharma
You can't store multiple date/time in one field. You will need to create separate field for each data/time stamp.
vishal-negandhivishal-negandhi

You need to use 
a. multiple fields - if there are not too many time stamps, doesn't make sense to have redundant fields. 

b. child records - if you do have a lot of such dates, makes more sense to move them to a child object.