You need to sign in to do that
Don't have an account?

Error: Incorrect argument type for operator '+'.
Hii Friends,'
When i was doing additon of two cutsom Field of type "Time" in formula field of type "Time".
X1__c + X2__c
It shows error like
Error: Incorrect argument type for operator '+'.
Please Help me
Thank you
When i was doing additon of two cutsom Field of type "Time" in formula field of type "Time".
X1__c + X2__c
It shows error like
Error: Incorrect argument type for operator '+'.
Please Help me
Thank you
and then try writing like this
All Answers
and then try writing like this
you can use the below format too.
TEXT( FLOOR ( time_out__c - time_in__c )) & " Days " & TEXT( ROUND( MOD (( time_out__c - time_in__c ) *24 , 24), 0) ) &" Hours " & TEXT( ROUND( MOD (( time_out__c - time_in__c ) *1440 , 60), 0)) &" Minutes "
I hope you find the above solution helpful. If it does, please mark as Best Answer to help others too.
Thanks.
Thank you.