Hi All,
I’ve looked over the custom concatenation help Open FN’s documentation provides (see below), but I’m struggling to figure out how to concatenate three values together.
I have data coming in from an ODK form with birth-year, birth-month and day and I want to concatenate that into a value that can be understood by a Salesforce date field, which would look something like birthyear/birthmonth/day.
Open FN’s custom concatenate:
field("ODK_Key__c", function (state) {
return (
dataValue("metaId")(state).concat(
"(", dataValue("index")(state), ")"
)
)
})