Hi everyone, I’m trying to set a field value based on a formula :
IF(
OR(
{Commandes} = BLANK(),
{Date_heure_RDV} = BLANK()),
"", CONCATENATE({Commandes} , " - ", DATETIME_FORMAT(Date_heure_RDV, 'M/DD/YYYY H:mm')),
IF(
OR(
{SILGAN BOL} = BLANK(),
{Date_heure_RDV} = BLANK()),
"", CONCATENATE({SILGAN BOL} , " - ", DATETIME_FORMAT(Date_heure_RDV, 'M/DD/YYYY H:mm'))
)
)
But when saving the formula… it just keep the first part. Is it possible to do this kind of nesting?
Thanks for your help

