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!
We’re experiencing technical issues with our vendor that are affecting license activations for Designer Desktop. We don’t yet have an estimated resolution time. We apologize for the inconvenience and will share updates as we have them.
Start Free Trial

Alteryx Designer Desktop Discussions

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

user input filter

dexter90
8 - Asteroid

I need to create a user input filter that has following dropdowns

All -display all records

Yes - display only yes

No - display only no

Based on user selection I need filter records.how to create a filter that takes user input and updates the value of filter?

 

Input file sample

ID     Criteria met

123   yes

321   no

1 REPLY 1
MichalM
Alteryx Alumni (Retired)

@dexter90 

 

You'd want to build a macro like the below

 

dropdown.png

 

  • Use the Dropdown with manually entered values
  • And the Action tool configured to updated the underlying filter with a formula. In this case if user select all you will look for all non-empty values in the Criteria met column and if it's any other value (yes or no) use this to replace the operand in the filter
IF [#1]="all" 
THEN "!IsEmpty([Criteria met])"
ELSE Replace([Destination], "value", [#1])
ENDIF

 

Example macro attached.

 

dropdown-filter.png

Labels
Top Solution Authors