This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
General Discussions has some can't miss conversations going on right now! From conversations about automation to sharing your favorite Alteryx memes, there's something for everyone. Make it part of your community routine!
I'm basically wanting to disable a container based on Today's day. I've tried multiple setups but I can't seem to get the container to disable. If it is not Saturday then remain enabled, vice-versa.
Solved! Go to Solution.
Hi @Adrian01 ,
You were almost right. The only thing you need to update is your condition formula to:
DateTimeFormat(datetimetoday(),"%A")='Saturday'
Let me know if that works for you.
Best,
Fernando Vizcaino
I changed the condition to test for the day being "Tuesday" but the container still has a text output. I have tested the IFF condition in a formula tool on another workflow and it outputs as "True" when I change it to "Tuesday".
What am I doing wrong? Or is there a better way to basically shut off this input from processing?
Hi @Adrian01 ,
Remove the iif clause from the condition and leave the formula as:
DateTimeFormat(datetimetoday(),"%A")='Tuesday'
It will work this way.