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

filter or formula help

hi2019
8 - Asteroid

Hi,

 

I need a formula or filter to do this 

 

if OWNER-CITY field is null, only spaces, contains a number, or is only a symbol(s) 

 

I need to pull out to manual tab

 

PLEASE HELP

 

thanks

2 REPLIES 2
LindonB
11 - Bolide

Try something like this. Let me know if it helps or you have questions.

IF IsNull([owner-city]) OR
Trim([owner-city]) = "" OR
REGEX_Match([owner-city], ".*\\d.*") OR
REGEX_Match([owner-city], "^[^a-zA-Z]*$")
THEN [owner-city]
ELSE Null()
ENDIF

binuacs
21 - Polaris

@hi2019 regex solution

image.png

Labels
Top Solution Authors