Alteryx Designer Desktop Discussions

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

Filter or Formula to export into different worksheets

geeklarokcmie
8 - Asteroid

For the below data - I'd like to use a filter or formula for the input data and have the desired output:

(Please note the the values in browser/application columns may be (alphanumeric with special characters)

 

Input

Issuesbrowser/applicationOwner
1ChromeGoogle
2FireFoxmozilla
3Edgemicrosoft
4IEMicrosoft
5powerappsmicrosoft
6drivegoogle
7safariapple

 

Output

Issuesbrowser/applicationOwner
1ChromeGoogle
2FireFoxmozilla
5powerappsmicrosoft
6drivegoogle
7safariapple

 

Once the above is achieved I'd like to output the data into separate worksheets - an example below:

 

Worksheet 1

Issuesbrowser/applicationOwner
3Edgemicrosoft
4IEMicrosoft
5powerappsmicrosoft

 

Worksheet 2 

Issuesbrowser/applicationOwner
1ChromeGoogle
6drivegoogle
12 REPLIES 12
geeklarokcmie
8 - Asteroid

Thank you so much. Your below workflow worked for. 

 

Another query - I need to get all the all the applications by the owner "jane doe" and "jill doe" along with only few applications such as "chrome" "snapchat" and "powerapps" by the owner "john doe"

 

Can you explain me why the below IF formula doesn't work for the above query? 

 

IF Contains([Application], "Chrome") THEN "Chrome"
Elseif Contains([Application], "snapchat") THEN "snapchat"
elseIF Contains([application], "powerapps") THEN "powerapps"
Else [Application] endif

binuacs
20 - Arcturus

@geeklarokcmie Your formula assigning a value instead of filtering

[Owner] IN ("jane doe","jill doe")
OR
(
   [Owner] IN ("john doe") 
   AND 
     (Contains([Application], "Chrome")
   OR
    Contains([Application], "Drive")
   OR
  Contains([Application], "SnapChat")
))

image.png

geeklarokcmie
8 - Asteroid

@binuacs  Appreciate your expert help in this matter. Thank you. Workflow is perfect now. 

Labels