Good morning,
I want to truncate the postal code by removing the first 2 digits.
I know how to do it in clac or excel but can we do it in appsheet?
If yes, how ?
Thanks for your help
Good morning,
I want to truncate the postal code by removing the first 2 digits.
I know how to do it in clac or excel but can we do it in appsheet?
If yes, how ?
Thanks for your help
You can do it with a formula MID([ColumnName],3,20). But as you can’t do that with the same column while the user is typing, you need to do that when the form is saving. That you can do with the Event action and you can find it from the Form view.
Thank you it’s perfect because it’s the result that should be displayed after saving the form
You’re welcome