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

How to filter specific file in Alteryx

DouglasEKL
7 - Meteor

Hi all,

I am new to Alteryx, i want to know how to filter a specific file e.g. (Admin*) in Alteryx, i only want to see all file start with Admin only. I attached a sample Excel file for your reference. Hope some one can guide me. Thank you.

 

Regards

Douglas 

2 REPLIES 2
cmcclellan
14 - Magnetar

Use this ... 

 

LEFT([SamAccountName],5) = "Admin"

 

LEFT means you take the first (ie left) 5 characters, if it is anywhere within the string you should use CONTAINS instead.

DouglasEKL
7 - Meteor

It indeed helps, thank you very much.

Labels
Top Solution Authors