Hi there,
I was wondering if there is any way to update a Detour tool without the use of a checkbox. I currently have a tree that is being used to make a selection and based on the "type" of selection it should redirect the data stream to it's appropriate container. I just want to know if there is a more efficient way because I feel like the checkbox is a little redundant after making the correct selection of the appropriate type. I feel like it gives a user the opportunity to fail even though it is still present.
Thank you.
Solved! Go to Solution.
Doesn't seem to work. I tried tweaking it to fit what I'm trying to do. This is my formula:
IF Left([#1], 2) = "01" THEN 'false'
ELSEIF Left([#1], 2) = "02" THEN 'true'
ELSEIF Left([#1], 2) = "03" THEN 'true'
ELSE 'true'
ENDIF
Wow all I was missing was the = "true"
Thank you!