Alteryx Designer Desktop Discussions

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

Removing Rows from Your Data Based on a Condition

jenner85
8 - Asteroid

Hi - 

 

How would I go about removing entire rows of data based on what a particular cell in the row contains?


For example I have a list of Names and Numbers, and I want to remove anything that is not a phone number

 

EmployeePhone
Joe6135553695
Anna6135552987
CircuitH88AHDB54
Bob6135558796
ServerS7875GTT1

 

I would like to remove any rows that do not contain only numbers in the "Phone" column.

 

Thanks!

1 REPLY 1
rarmstrong
8 - Asteroid

Add this formula to your filter

 

Regex_Match([Phone],"\d{10}") = -1

Labels