Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
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