Hi all
I need help removing special characters such as dash, hypen (-) and replacing them with space, on my existing formula
formula:
With(
{
varw: Split(
DataCardValue6.Value,
" "
),
varNo: 2// Define the variable varNo here
},
If(
CountRows(varw) > varNo,
Concatenate(
Index(
varw,
varNo
).Value,
" ",
Index(
varw,
varNo + 1
).Value
),
CountRows(varw) = varNo,
Last(varw).Value
)
)
current issue:

Thank you all 😀