<?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: Conditional (if / then / else) logic in Survey123 using numeric answers in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1339266#M52388</link>
    <description>&lt;P&gt;Hello Doug,&lt;/P&gt;&lt;P&gt;I wanted to see if you could help on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if((${ResourceType}="Personnel", ${HourlyCost}, " "), if(${ResourceType}="Equipment", ${OthersCost}, " "))&lt;/P&gt;</description>
    <pubDate>Wed, 18 Oct 2023 18:31:45 GMT</pubDate>
    <dc:creator>ChristopherMask</dc:creator>
    <dc:date>2023-10-18T18:31:45Z</dc:date>
    <item>
      <title>Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1038824#M33317</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;I'm trying to use conditional if / then / else logic in Survey123 to take a range of numeric values calculated in (question_one) and assign it a value accordingly.&lt;/P&gt;&lt;P&gt;I've tried modifying this script (from: &lt;A href="https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformformulas.htm#ESRI_SECTION2_BED1A394912441F3833B6D15DE3D6FB5" target="_blank" rel="noopener"&gt;https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformformulas.htm#ESRI_SECTION2_BED1A394912441F3833B6D15DE3D6FB5&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;if(condition, a, b)&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;If the condition evaluates to true, returns a; otherwise, returns b.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN class="usertext"&gt;if(selected(${question_one}, 'yes') and selected(${question_two}, 'yes'), 'yes', 'no')&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The conditional logic would be something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(${question_one&lt;SPAN&gt;} &amp;gt;&lt;/SPAN&gt;&amp;nbsp;1.0 and &amp;lt; 1.9) then&amp;nbsp;assigned_value = '500mm'&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;if(${question_one&lt;SPAN&gt;} &amp;gt;&lt;/SPAN&gt;&amp;nbsp;2.0 and &amp;lt; 2.9) then&amp;nbsp;assigned_value = '600mm'&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else(${question_one&lt;SPAN&gt;} &amp;gt;&lt;/SPAN&gt;&amp;nbsp;2.0 and &amp;lt; 2.9) then&amp;nbsp;assigned_value = '700mm'&lt;/P&gt;&lt;P&gt;I've tried this format (and similar variations):&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(${Q100} &amp;gt; 0.5), '500'&lt;/P&gt;&lt;P&gt;Note: question_one is a numeric field (decimal) that calculates a total based on other fields in the form (i.e. an average). The assigned_value field would then use that auto-calculated numeric value field and categorize the numeric values based on ranges (i.e. 1.0 to 2.9 or &amp;gt;= 1 and &amp;lt;= 2.9).&lt;/P&gt;&lt;P&gt;Is this possible within Survey123. Does anyone have experience using a similar loop conditional statement?&lt;/P&gt;&lt;P&gt;Thanks in advance for your help!&lt;/P&gt;&lt;P&gt;SJ&lt;/P&gt;</description>
      <pubDate>Fri, 19 Mar 2021 19:40:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1038824#M33317</guid>
      <dc:creator>SilverwoodConsulting</dc:creator>
      <dc:date>2021-03-19T19:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1038865#M33318</link>
      <description>&lt;P&gt;You are just having some syntax issues.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First you always need to build both sides of an And or Or.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if(${question_one&lt;/SPAN&gt;&lt;SPAN&gt;} &amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;1.0 and ${question_one} &amp;lt; 1.9, '500mm', 'no')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;123 does not have esleif so it does get harder to chain them together.&amp;nbsp; But it goes like this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;if(${question_one} &amp;gt; 1.0 and ${question_one} &amp;lt; 1.9, '500mm', if(${question_one} &amp;gt; 2.0 and ${question_one} &amp;lt; 2.9, '600mm', if(${question_one} &amp;gt; 2.0 and ${question_one} &amp;lt; 2.9, '700mm', 'none of the above')))&lt;/P&gt;&lt;P&gt;So same logic, it just needs to be written on all one line. if(condition, true, false)&amp;nbsp; Hope that helps.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Mar 2021 21:10:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1038865#M33318</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2021-03-19T21:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1039944#M33370</link>
      <description>&lt;P&gt;Thank you! This worked out perfect!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 21:30:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1039944#M33370</guid>
      <dc:creator>SilverwoodConsulting</dc:creator>
      <dc:date>2021-03-23T21:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1325768#M51560</link>
      <description>&lt;P&gt;Dear colleagues,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am struggling with very simple question. Please help to sort i out. I have a string quesion {crop} with dropdown and one choice should be selected. Have another string quesion {alt_crop} to polulate based one choice from {crop}.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Struggling with syntaxis here (not working):&lt;/P&gt;&lt;P&gt;if(selected(${crop},'Corn'), 'Winter wheat', if(selected(${crop},'Winter wheat'), 'Sunflower', 'na'))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Survey is done based on existing layer ({crop} haas domains&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what is wrong here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 09:15:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1325768#M51560</guid>
      <dc:creator>EduMoldovaAdmin</dc:creator>
      <dc:date>2023-09-06T09:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1325945#M51569</link>
      <description>&lt;P&gt;What is happening when you try to save/run the calculation? The first thing that comes to mind is use the domain values, not the display names as I was encountering this earlier with a colleague.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 15:22:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1325945#M51569</guid>
      <dc:creator>RobertAnderson3</dc:creator>
      <dc:date>2023-09-06T15:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1339266#M52388</link>
      <description>&lt;P&gt;Hello Doug,&lt;/P&gt;&lt;P&gt;I wanted to see if you could help on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if((${ResourceType}="Personnel", ${HourlyCost}, " "), if(${ResourceType}="Equipment", ${OthersCost}, " "))&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 18:31:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1339266#M52388</guid>
      <dc:creator>ChristopherMask</dc:creator>
      <dc:date>2023-10-18T18:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1339268#M52390</link>
      <description>&lt;P&gt;I used this and it worked&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;coalesce(${HourlyCost},${OthersCost})&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 18:36:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1339268#M52390</guid>
      <dc:creator>ChristopherMask</dc:creator>
      <dc:date>2023-10-18T18:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1340057#M52448</link>
      <description>&lt;P&gt;Good Morning Doug,&lt;/P&gt;&lt;P&gt;Wondered if you would give this a quick look.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The name columns Two09 and Two09Calc. It currently has this for the calculation:&lt;/P&gt;&lt;P&gt;if((${FinalFireAcreQuantity}&amp;gt;=300 and $NumberFatalities} &amp;gt;=1), 'Yes','No')&lt;/P&gt;&lt;P&gt;If statement is true, then Two09 = Yes, if not Two09 = No.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2023 15:22:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1340057#M52448</guid>
      <dc:creator>ChristopherMask</dc:creator>
      <dc:date>2023-10-20T15:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1340094#M52451</link>
      <description>&lt;P&gt;You are missing a {&amp;nbsp;$&lt;STRONG&gt;{&lt;/STRONG&gt;NumberFatalities} &amp;nbsp;see in bold&lt;/P&gt;&lt;P&gt;if((${FinalFireAcreQuantity}&amp;gt;=300 and $&lt;STRONG&gt;{&lt;/STRONG&gt;NumberFatalities} &amp;gt;=1), 'Yes','No')&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2023 16:01:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1340094#M52451</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2023-10-20T16:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1340121#M52454</link>
      <description>&lt;P&gt;Goodness, that worked! Thanks for the response and have an excellent weekend!&lt;/P&gt;&lt;P&gt;Also, change to an or statement.&amp;nbsp;if((${FinalFireAcreQuantity}&amp;gt;=300 or ${NumberFatalities} &amp;gt;=1), 'Yes','No')&lt;/P&gt;&lt;P&gt;Christopher&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2023 17:08:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1340121#M52454</guid>
      <dc:creator>ChristopherMask</dc:creator>
      <dc:date>2023-10-20T17:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1340889#M52495</link>
      <description>&lt;P&gt;I'm hoping you can help me out with this one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to have a conditional statement after a geopoint question is completed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you select within a parcel, then you are within the boundary. If you select outside of a parcel, you are outside the boundary.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is appreciated. Thanks!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 13:51:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1340889#M52495</guid>
      <dc:creator>AmandaBeck</dc:creator>
      <dc:date>2023-10-24T13:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1505618#M57909</link>
      <description>&lt;P&gt;I am trying to evaluate 2 if statements in the calculate field of an xls form and the following works for the 1st statement but not the 2nd (the 2nd statement is in bold):&lt;/P&gt;&lt;P&gt;if(selected(${RMZ_CLASS}, 'CAT_1') or selected(${RMZ_CLASS}, 'CAT_2') or selected(${RMZ_CLASS}, 'CAT_3'), ('100 Feet'), '0 Feet' &lt;STRONG&gt;or &lt;EM&gt;if(selected(${RMZ_CLASS},'CAT_4'),('50 Feet'),'0 Feet'))&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;When I choose CAT_1, 2, or 3 in the list '100 Feet' is returned in the field, but if I choose CAT_4, '0 Feet' is returned, when it should return '50 Feet'.&lt;/P&gt;&lt;P&gt;Anyone have ideas where I am going wrong?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 23:17:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1505618#M57909</guid>
      <dc:creator>BryceHancock</dc:creator>
      <dc:date>2024-07-15T23:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1507971#M58022</link>
      <description>&lt;P&gt;You have 2 else statements and too many parenes try this&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if(selected(${RMZ_CLASS}, 'CAT_1') or selected(${RMZ_CLASS}, 'CAT_2') or selected(${RMZ_CLASS}, 'CAT_3'), ‘&lt;/SPAN&gt;100 Feet&lt;SPAN&gt;',&lt;/SPAN&gt;&lt;STRONG&gt;&amp;nbsp;&lt;EM&gt;if(selected(${RMZ_CLASS},'CAT_4'),'50 Feet','0 Feet'))&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 14:57:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1507971#M58022</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2024-07-22T14:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1520692#M58459</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/16421"&gt;@DougBrowning&lt;/a&gt;&amp;nbsp;I am trying to also do something similar, however with months in a year. I am trying to use a conditional calculation to autofill the fiscal year.&amp;nbsp; I have this,&amp;nbsp;&lt;/P&gt;&lt;P&gt;format-date(${inspection_date}, '%n'), if(${inspection_date } =&amp;lt; 1 and ${ inspection_date } =&amp;gt;3, 'Q2', and if(${inspection_date}=1 or 2 or 3, 'Q2') and if(${inspection_date}=4 or 5 or 6, 'Q3', 'Q4'))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;however I am getting an error and was wondering if you could help me with it.&lt;/P&gt;&lt;P&gt;Thank you so much for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 16:45:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1520692#M58459</guid>
      <dc:creator>TKSHEP</dc:creator>
      <dc:date>2024-08-13T16:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1520821#M58462</link>
      <description>&lt;P&gt;Do you have this all in one field or something?&amp;nbsp; If so that is not the correct way, this statement above just has a function at the front.&amp;nbsp; Also all of your syntax is incorrect.&amp;nbsp;&lt;/P&gt;&lt;P&gt;You need to split this to 2 fields.&lt;/P&gt;&lt;P&gt;Field_1 is&amp;nbsp;&lt;SPAN&gt;format-date(${inspection_date}, '%n')&amp;nbsp; note set to integer type and appearance as hidden.&amp;nbsp; Set bind::type to null if you do not want this field in the final schema.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Then Field_2 uses the value from Field_1&lt;/P&gt;&lt;P&gt;Easier to read this way and proper syntax&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if(${Field_1} &amp;lt;= 3, 'Q1', if(${Field_1} &amp;gt;= 4 and ${Field_1} &amp;lt;= 6, 'Q2',&amp;nbsp;if(${Field_1} &amp;gt;= 7 and ${Field_1} &amp;lt;= 9 'Q3', 'Q4')))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Would be a good idea to read up on how if statements work in general.&amp;nbsp; if(condition, true, false)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 19:50:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1520821#M58462</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2024-08-13T19:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional (if / then / else) logic in Survey123 using numeric answers</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1562185#M60244</link>
      <description>&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-pulldata-quot-layer/ba-p/1224415" target="_blank"&gt;https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-pulldata-quot-layer/ba-p/1224415&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2024 14:02:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/conditional-if-then-else-logic-in-survey123-using/m-p/1562185#M60244</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2024-11-25T14:02:16Z</dc:date>
    </item>
  </channel>
</rss>

