How to apply validation on number?

1
Hi, I want to add validation on the number if the number contains a comma(,) Then it will display error message please enter a value in correct format. so how to check that comma is present in value or not in microflow.
asked
1 answers
0

Hi Madhura, 

You can use number regex in validation rules which in turn can be called in your microflow.

number regex ^[0-9]$

this one will only accept the numbers.

 

answered