You need to sign in to do that
Don't have an account?
R Reay
Creating formula with Date/Time output through combining a Date and Time field in SF
Hello,
I want to create a formula to use within a flow that outputs a DATETIME value using seperate inputs from a Date field and Time field.
I have tried various different formulas, but have yet to get it working. For reference, I have been playing around with formulas such as:
DATETIMEVALUE ( TEXT ( DATEFIELD__c) & " " & (TIMEFIELD__c))
However, none have worked thus far. Appreciate any insight or guidance on this one.
Thank you,
R
I want to create a formula to use within a flow that outputs a DATETIME value using seperate inputs from a Date field and Time field.
I have tried various different formulas, but have yet to get it working. For reference, I have been playing around with formulas such as:
DATETIMEVALUE ( TEXT ( DATEFIELD__c) & " " & (TIMEFIELD__c))
However, none have worked thus far. Appreciate any insight or guidance on this one.
Thank you,
R
Please try the below formula:
Thanks,
Maharajan.C
try with below formula.
If this helps, Please mark it as best answer.
Thanks!!
You can use this formula :
(DATETIMEVALUE(TEXT(YEAR(DATEFIELD__c)) + ":" +
TEXT(MONTH(DATEFIELD__c)) +":"+
TEXT(DAY(DATEFIELD__c)) + " :" +
TEXT(VALUE(LEFT(TEXT(TIMEFIELD__c), 2))) + MID(TEXT(TIMEFIELD__c),3,3) +":00"))
Kindly mark it as the best answer if it helps .