Skip to main content
I have employees entering in the beginning and ending dates of a request in date fields.  I need to then convert those dates into a Date/ Time Field with the beginning date having the time of 12 am, and the ending date having a time of 5pm.   I need this so that I can create an event in process builder

 

I tried DATETIMEVALUE (Begining_date_c) but it returned today's date
답변 3개
  1. 2016년 6월 30일 오후 4:30
    Try:

     

     

    DATETIMEVALUE(TEXT( Date_Field__c) + TEXT( Number_Field__c) + ':00:00')

     

     
0/9000