Checking char(alphabetic) only. in name between spaces getting failed
- 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,
I am Checking char(alphabetic) only. in name between spaces also getting failed.
my requirement
1. checking length greater than 11 fail
2. if any null values fail
3. if alphanumeric 123abc or abc123 fail
please check my workflow
Solved! Go to Solution.
- Labels:
- Topic of Interest
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Nagaraju_kanna I mocked up an approach to tackle your requirements.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Nagaraju_kanna
I think one conditional statement should do if.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Here is my take on it
IF Length([NAME])<= 11 and REGEX_Match([NAME], "\u+")
Then 'PASS'
Else 'FAIL'
Endif
If only alphabetic and length less than or equal to 11 then pass rest all fail
Workflow:
Hope this helps : )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi atcodedog05,
I check workflow but 4 and 7 rows fail. It should be pass. because less than 11 char.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
You mentioned if it has space if should fail
If space is ok here is the workflow
Hope this helps : )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Happy to help : ) @Nagaraju_kanna
Cheers and have a nice day!
