Hi,
I'm trying to get the First Name of a contact from a field by finding the first ' ' in their full name
Any idea why this formula including add() works:
substring(triggerBody()?['05 - CS Contact'],1,add(indexOf(triggerBody()?['05 - CS Contact'],' ') ,-1 ) )
But this without add() gives a 'The expression is invalid' message:
substring(triggerBody()?['05 - CS Contact'],1, indexOf(triggerBody()?['05 - CS Contact'],' ') -1 )

Cheers!