Important Community update: The process for changing your account details was updated on June 25th. Learn how this impacts your Community experience and the actions we suggest you take to secure your account here.

Alteryx Designer Desktop Discussions

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

Detour Tool - question

Arek
6 - Meteoroid

Hi,

 

Please find attached a simply workflow.

My idea was:

- if user select Category = „Other” the Sum will be calculated (workflow connected with L anchor of Detour Tool – „True”)

- if user select Category <>„Other” the Min will be calculated (workflow connected with R anchor of Detour Tool – „False”)

 

The problem is that in both cases only L anchor is activated. There is no Category which activates R anchor.

Maybe I don’t understand correctly how Detour Tool works...

 

Thank you in advance for explanation.

5 REPLIES 5
Jonathan-Sherman
15 - Aurora
15 - Aurora

Hi @Arek,

 

You need to ensure the correct section you want to update is highlighted in the action tool. In your case ensure you've highlighted the @value - value="False" to update whether the detour tool is turned to the right or not (true -> right). You weren't previously updating the correct part in the action tool, but changing this solves your issue!

 

Jonathan-Sherman_0-1589317565414.png

 

If this solves your issue please mark the answer as correct, if not let me know! I've attached your updated app for you to download if needed.

 

Regards,

Jonathan

 

ggruccio
ACE Emeritus
ACE Emeritus

Use answer above by @Jonathan-Sherman !....I was suggesting radio button or check box.

Arek
6 - Meteoroid

Hi Jonathan,

It's clear now, I've missed highlighting it. It works now. Thank you !

 

I did another test and I have an additional question. I've updated Detour Tool as showed below and it works as before (if Other (true) -  R anchor, if not Other (false) - L anchor).

Previously I expected that after checking "Detour to the Right" it will work reversely. Now I think it doesn't matter what value is at the beginning (False as before or True as now) because I'm updating this value so the result is the same. Am I right ?

 

Arek_0-1589361205416.png

Arek_1-1589361328093.png

 

 

Jonathan-Sherman
15 - Aurora
15 - Aurora

Hi @Arek,

 

You're exactly right - you're updating the value so it doesn't matter what it is to start with. If you wanted to work it reversely you could change your formula inside the action tool to read

 

IIF([#1]="Other", "False", "True")

 

Swapping "False" and "True" round would reverse the output options used.

 

If this solves your issue please mark the answer as correct, if not let me know!

 

Regards,

Jonathan

Arek
6 - Meteoroid

Thank you very much Jonathan !

 

Regards,

Arek

Labels