Forum Discussion
Tony2021
Feb 02, 2022Iron Contributor
Closing Parenthesis error
Hello I get a closing parenthesis error but I have added it. I dont see what else I am missing? StrippedInv: iif(Iserror(StrippedChar([Invoice No]),"",StrippedChar([Invoice No])
- Feb 02, 2022
I do believe there IS a missing closing parenthesis or two.
Count the opening ( parens and the closing ) parens. There is at least one more open than close.
StrippedInv: iif(Iserror(StrippedChar([Invoice No]),"",StrippedChar([Invoice No])
George_Hepworth
Feb 02, 2022Silver Contributor
I do believe there IS a missing closing parenthesis or two.
Count the opening ( parens and the closing ) parens. There is at least one more open than close.
StrippedInv: iif(Iserror(StrippedChar([Invoice No]),"",StrippedChar([Invoice No])
- Tony2021Feb 02, 2022Iron Contributor
Hi George,
Its works now:
StrippedInv: IIf(IsError(StrippedChar([Invoice No])),"",StrippedChar([Invoice No]))
thank you