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
Hi @Nagaraju_kanna
You mentioned if it has space if should fail
If space is ok here is the workflow
Hope this helps : )
Hi @Nagaraju_kanna I mocked up an approach to tackle your requirements.
@Nagaraju_kanna I think one conditional statement should do if.
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:
Hi atcodedog05,
I check workflow but 4 and 7 rows fail. It should be pass. because less than 11 char.