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
13 - Pulsar

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