Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Multirow formula te check if the string has alpha characters

soncoku
9 - Comet

if

>>>>>>>>Here I want to check if the [Field1] has alpha characters (a,b,c,d....)<<<<<<
then [Field1]
else
[Row-1:Group Title] endif

 

Any ideas?

3 REPLIES 3
atcodedog05
22 - Nova
22 - Nova

Hi @soncoku 

 

Here is a workflow for the task.

IF REGEX_CountMatches([Field1],"[[:alpha:]]" )>0 
THEN "Has Alpha" ELSE "No Alpha" ENDIF

Workflow:

atcodedog05_0-1604925300570.png

Hope this helps 🙂


If this post helps you please mark it as solution. And give a like if you dont mind 😀👍

messi007
15 - Aurora
15 - Aurora

Dear @soncoku,

 

below the solution with mutirow formula:

messi007_0-1604926590219.png

 

Hope that helps !

 

Regards,

 

atcodedog05
22 - Nova
22 - Nova

Happy to help 🙂 @soncoku 

 

Cheers and Happy Analyzing 😀

Labels
Top Solution Authors