<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Nested IF statements in Survey123 in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/870602#M28046</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Katherine,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, it looks like you could combine your first 3 conditions (a, b, &amp;lt;10) into one evaluation as they provide the same result.&lt;/P&gt;&lt;P&gt;if(&lt;SPAN style="background-color: #ffffff;"&gt;selected(${material}, 'a') or&amp;nbsp;&lt;SPAN&gt;selected(${material}, 'a') or ${score}, 'Very Low', ...)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;The next part is nesting, which you have done 1 level correctly for above:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;if(&lt;SPAN style="background-color: #ffffff;"&gt;selected(${material}, 'a') or&amp;nbsp;&lt;SPAN&gt;selected(${material}, 'a') or ${score}, 'Very Low', if(${score} &amp;lt; 20, 'Low', ...))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN&gt;Further nesting involves placing full if() statements inside the '...' area. &amp;nbsp;Given the error message you are reporting, it's likely you may be closing off an if() statement early, causing it to see additional values in the next higher up if()&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN&gt;if(&lt;SPAN style="background-color: #ffffff;"&gt;selected(${material}, 'a') or&amp;nbsp;&lt;SPAN&gt;selected(${material}, 'b') or ${score}, 'Very Low', if(${score} &amp;lt; 20, 'Low', if(${score} &amp;lt; 30, 'Moderate', if(${score} &amp;lt; 40, 'High', if(${score} &amp;lt; 45, 'Very High', 'Extreme')))))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN&gt;I find it easiest to do this properly by typing if() when beginning a function and then going inside the parenthesis to fill the values out - that way, you always have the parenthesis in the right place. &amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN&gt;Note that you don't need an if() for the final value - it's an else (just like you don't need an elif in the python sequence; an else would have produced identical results)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Oct 2019 17:36:40 GMT</pubDate>
    <dc:creator>JamesTedrick</dc:creator>
    <dc:date>2019-10-24T17:36:40Z</dc:date>
    <item>
      <title>Nested IF statements in Survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/870601#M28045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to write a nested IF statement in Survey123 Connect, and I am having a bit of trouble with the syntax. Here is the gist of what I want to do, in Python syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; val1 &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'a'&lt;/SPAN&gt; OR val1 &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'b'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
	score &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Very Low'&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;elif&lt;/SPAN&gt; total_score &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
	score &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Very Low'&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;elif&lt;/SPAN&gt; total_score &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;20&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
	score &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Low'&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;elif&lt;/SPAN&gt; total_score &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;30&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
	score &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Moderate'&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;elif&lt;/SPAN&gt; total_score &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;40&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
	score &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'High'&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;elif&lt;/SPAN&gt; total_score &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;45&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
	score &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Very High'&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;elif&lt;/SPAN&gt; total_score &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;45&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
	score &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Extreme'&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far, I've gotten this much to work in Survey 123:&lt;/P&gt;&lt;P&gt;if(selected(${material}, 'a'), 'Very Low',if(selected(${material}, 'b'), 'Very Low', '0'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I seem to be able to get as far as the first IF statement and then an ELSE statement, but nesting any further is returning&amp;nbsp;error messages like "cannot handle 'if' requires 3 arguments. Only 4 provided."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated!! Thanks!&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3263" target="_blank"&gt;James Tedrick&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:51:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/870601#M28045</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2021-12-12T10:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statements in Survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/870602#M28046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Katherine,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, it looks like you could combine your first 3 conditions (a, b, &amp;lt;10) into one evaluation as they provide the same result.&lt;/P&gt;&lt;P&gt;if(&lt;SPAN style="background-color: #ffffff;"&gt;selected(${material}, 'a') or&amp;nbsp;&lt;SPAN&gt;selected(${material}, 'a') or ${score}, 'Very Low', ...)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;The next part is nesting, which you have done 1 level correctly for above:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;if(&lt;SPAN style="background-color: #ffffff;"&gt;selected(${material}, 'a') or&amp;nbsp;&lt;SPAN&gt;selected(${material}, 'a') or ${score}, 'Very Low', if(${score} &amp;lt; 20, 'Low', ...))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN&gt;Further nesting involves placing full if() statements inside the '...' area. &amp;nbsp;Given the error message you are reporting, it's likely you may be closing off an if() statement early, causing it to see additional values in the next higher up if()&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN&gt;if(&lt;SPAN style="background-color: #ffffff;"&gt;selected(${material}, 'a') or&amp;nbsp;&lt;SPAN&gt;selected(${material}, 'b') or ${score}, 'Very Low', if(${score} &amp;lt; 20, 'Low', if(${score} &amp;lt; 30, 'Moderate', if(${score} &amp;lt; 40, 'High', if(${score} &amp;lt; 45, 'Very High', 'Extreme')))))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN&gt;I find it easiest to do this properly by typing if() when beginning a function and then going inside the parenthesis to fill the values out - that way, you always have the parenthesis in the right place. &amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;SPAN&gt;Note that you don't need an if() for the final value - it's an else (just like you don't need an elif in the python sequence; an else would have produced identical results)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2019 17:36:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/870602#M28046</guid>
      <dc:creator>JamesTedrick</dc:creator>
      <dc:date>2019-10-24T17:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statements in Survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/870603#M28047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;James,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you SO much for your quick reply and extremely thorough answer. It was very helpful, and I have it working now!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Katherine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2019 17:48:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/870603#M28047</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2019-10-24T17:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statements in Survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1187917#M43509</link>
      <description>&lt;P&gt;I'm looking to do this exact "if selected OR if selected" type statement, but in a survey report. I know I can use:&lt;/P&gt;&lt;P&gt;${if field_name | selected:"choice1"}&lt;/P&gt;&lt;P&gt;to see if a single choice is selected, but how how do I make that if statement work if I want it to evaluate to "True" if choice1 or choice3 or choice5 are selected (as in a true "OR" statement - any or all of them can be selected)?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 17:08:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1187917#M43509</guid>
      <dc:creator>ThomasM</dc:creator>
      <dc:date>2022-06-29T17:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statements in Survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1189502#M43595</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/497260"&gt;@ThomasM&lt;/a&gt;&amp;nbsp;!&amp;nbsp; You might find it helpful to look at the "Conditional Report Elements" section of this &lt;A href="https://doc.arcgis.com/en/survey123/browser/analyze-results/featurereporttemplates.htm#ESRI_SECTION1_A789EA089E14456995E9910119300AD5" target="_blank" rel="noopener"&gt;documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The syntax is slightly different for the reports compared to within the XLS form.&lt;/P&gt;&lt;P&gt;If you have a more specific question after reading that, let me know and I'll do my best to assist. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 16:55:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1189502#M43595</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2022-07-05T16:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statements in Survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1189618#M43614</link>
      <description>&lt;P&gt;So that documentation only covers the example I gave in my question: how to do an "if" for a single selected choice. I have been unable to find any documentation on having an "if" statement that has multiple possible selections be valid. I would expect something along these lines, but I haven't found a way that works yet:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;${if field_name | selected:"choice1 OR choice3 OR choice5"}&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 20:57:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1189618#M43614</guid>
      <dc:creator>ThomasM</dc:creator>
      <dc:date>2022-07-05T20:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statements in Survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1189815#M43628</link>
      <description>&lt;P&gt;Ah, ok I see now. I would have to do some testing and experimenting to see if a syntax directly in the report would work for that, but one idea that came to mind would be a schema change in the survey. Have a hidden question that returns "True" if choice1 OR choice3 OR choice5 is selected. Then in the report, populate the checkbox based on that hidden question.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 13:21:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1189815#M43628</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2022-07-06T13:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statements in Survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1349377#M52845</link>
      <description>&lt;P&gt;Hi Thomas,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you ever figure this out? I'm working on troubleshooting the same issue right now and have not been able to find any documentation with examples. I'm hesitant to use Katherine's option involving a schema change because my survey's XLSForm is being built off of an existing hosted feature layer, so adding new fields is more labor-intensive.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jordan - GIS Analyst &amp;amp; Watershed/Stormwater Research Specialist&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 20:58:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1349377#M52845</guid>
      <dc:creator>JordanFox2</dc:creator>
      <dc:date>2023-11-14T20:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statements in Survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1607432#M62181</link>
      <description>&lt;P&gt;Hi James, I wanted to reply and say that I just used this response to solve a nested if statement issue I was having a few minutes ago. Thanks so much for the clear explanation!!&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 21:08:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/nested-if-statements-in-survey123/m-p/1607432#M62181</guid>
      <dc:creator>Melanie_K</dc:creator>
      <dc:date>2025-04-18T21:08:11Z</dc:date>
    </item>
  </channel>
</rss>

