Hello. I'm trying to write a validation formula for a field that should only accept numbers (0-9) and these special characters ("$", "%", ",", "."). Could someone please advise me on how I could exclude alpha characters from the field? There is no expected number of characters for the text entered into the field. I just want to prevent people from adding alpha character text narrative. The field needs to be restricted to numbers only, but has to be able to accept currency, percentages, integers, and floats. I believe I should be using the IsMatch function, but I'm unsure of the full expression.
Here's what I have, but it's not working.
If(IsMatch(DataCardValue4.Text,"^([a-zA-Z])$"),false,true)