Row contains all digits then True
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi all,
Does anyone know how to update a column if a row contains all digits then True?
Not sure how to do the all digits part in a formula.
Thanks.
Solved! Go to Solution.
- Labels:
- Preparation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hey @wonka1234 I would tweak @csmith11's regex so that it's REGEX_MATCH([Test Column],'\d+'). This will ensure that the column contains only digits, and that there is at least 1 digit in there - if we used '\d*' then nulls and/or empties would come back true
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@wonka1234 I fully agree with @OllieClarke. This is a great point!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
hi @csmith11 and @OllieClarke , having trouble implementing it, getting the result as 0. Could this be related to data type?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hey @wonka1234 sorry, we interpreted your request as checking that the row is made of only digits. If you want to check that it contains at least 1 digit then use the following formula:
Regex_CountMatches([Field],'\d')>0
Hope that helps,
Ollie
