- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2024 05:51 AM
How to make a variable to be restricted like it should allow only 2 numbers after the .(dot) in the below screenshot
Please suggest.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2024 05:59 AM - edited 12-13-2024 06:01 AM
Hello @Archana23
Please refer below thread:
Please mark the answer as helpful and correct if helped.
Kind Regards,
Ravi Chandra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2024 06:04 AM
Hello @Archana23 ,
You can use below regex pattern:
Regex - ^\d+(\.\d{1,2})?$
For implementing this, please refer below accepted thread:
Please mark this as "correct" and "helpful" if you feel this answer helped you in anyway.
Thanks and Regards,
Ashish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2024 05:59 AM - edited 12-13-2024 06:01 AM
Hello @Archana23
Please refer below thread:
Please mark the answer as helpful and correct if helped.
Kind Regards,
Ravi Chandra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2024 06:04 AM
Hello @Archana23 ,
You can use below regex pattern:
Regex - ^\d+(\.\d{1,2})?$
For implementing this, please refer below accepted thread:
Please mark this as "correct" and "helpful" if you feel this answer helped you in anyway.
Thanks and Regards,
Ashish