Hi all, when enabling Formula-level error management I'm getting the error "The second argument to the 'Replace' function must be greater than or equal to 1"
The below formula is what it is referring to which appears to be working as expected. I didn't create the app originally but am maintaining it and I wanted to enable the error management to handle NULL values. Any ideas?
Concatenate(
"Something went wrong with a previous attempt to save the report. Click below to go back to the report and check the following sections for completeness: ",
Replace(lclMissingListItemNames,Len(lclMissingListItemNames)-1,Len(lclMissingListItemNames),".")
)
TIA
Paul