<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Logic</title><link>https://community.appian.com/discussions/f/general/34093/logic</link><description>i have condition, where 2 questions are dependent on each other 
 when i select 1st Q as YES then next Q auto select to NO 
 if 1st select as NO then no action of 2nd Q 
 if second Q is YES then 1st to be auto select to NO 
 if second Q is NO then no</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Logic</title><link>https://community.appian.com/thread/131042?ContentTypeID=1</link><pubDate>Tue, 12 Mar 2024 09:36:48 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:306bc3a4-0986-41a5-9c2b-bf134a8dd51c</guid><dc:creator>Konduru Chaitanya</dc:creator><description>&lt;p&gt;&lt;a href="/members/harleyo8809"&gt;HarleyOlsen&lt;/a&gt;&amp;nbsp; What update are you looking for? This question has been answered.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Logic</title><link>https://community.appian.com/thread/131039?ContentTypeID=1</link><pubDate>Tue, 12 Mar 2024 09:33:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:82af6733-1258-4ac5-8102-2d15c6eeafd4</guid><dc:creator>HarleyOlsen</dc:creator><description>&lt;p&gt;Any update?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Logic</title><link>https://community.appian.com/thread/129749?ContentTypeID=1</link><pubDate>Tue, 20 Feb 2024 05:39:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c2c2b801-07ae-4e5c-964e-27ece1fc2094</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;You can easily do this manipulation in the component&amp;#39;s saveInto. Check for the value and using an if() statement, simply do the required manipulation.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Logic</title><link>https://community.appian.com/thread/129748?ContentTypeID=1</link><pubDate>Tue, 20 Feb 2024 05:39:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cdccb422-6c1c-41a0-8d58-0457210d8fed</guid><dc:creator>Niranjan79</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!q1,
  local!q2,
  {
  a!columnsLayout(
    columns: {
      a!columnLayout(
        contents: {
          a!dropdownField(
            choiceLabels: {&amp;quot;Yes&amp;quot;,&amp;quot;No&amp;quot;},
            choiceValues: {&amp;quot;Yes&amp;quot;,&amp;quot;No&amp;quot;},
            label: &amp;quot;Question 1&amp;quot;,
            labelPosition: &amp;quot;ABOVE&amp;quot;,
            placeholder: &amp;quot;--- Select a Value ---&amp;quot;,
            value: local!q1,
            saveInto: {
              local!q1,
              if(
                local!q1=&amp;quot;Yes&amp;quot;,
                a!save(
                  local!q2,
                  &amp;quot;No&amp;quot;
                ),
                {}
              )
            },
            searchDisplay: &amp;quot;AUTO&amp;quot;,
            validations: {}
          )
        }
      ),
      a!columnLayout(
        contents: {
          a!dropdownField(
            choiceLabels: {&amp;quot;Yes&amp;quot;,&amp;quot;No&amp;quot;},
            choiceValues: {&amp;quot;Yes&amp;quot;,&amp;quot;No&amp;quot;},
            label: &amp;quot;Question 1&amp;quot;,
            labelPosition: &amp;quot;ABOVE&amp;quot;,
            placeholder: &amp;quot;--- Select a Value ---&amp;quot;,
           value: local!q2,
            saveInto: {
              local!q2,
              if(
                local!q2=&amp;quot;Yes&amp;quot;,
                a!save(
                  local!q1,
                  &amp;quot;No&amp;quot;
                ),
                {}
              )
            },
            searchDisplay: &amp;quot;AUTO&amp;quot;,
            validations: {}
          )
        }
      ),
      a!columnLayout(
        contents: {}
      )
    }
  )
}
)&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Hi &lt;a href="/members/kavyam0002"&gt;KM&lt;/a&gt;&amp;nbsp;,&lt;/p&gt;
&lt;p&gt;try the above code and see if it works for you&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>