Hi Guys,
I have a dynamic text input box.
I want to only extract numbers and remove everything else. Example letters, spaces, special characters etc.
Any help is greatly appreciated.
Thanks
Hi @christian12 ,
This works for me too ->
Trim(Concat(Split(TextInput1.Text,""),If(IsBlankOrError(Value(Value)),"",Value),""))
Either of these tend to work for me:
Trim(Concat(Split(Label7.Text,""),If(IsBlankOrError(Value(Value)),"",Value),""))
Concat(Filter(Split(Label7.Text,""),IsNumeric(Value)),Value)