<?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: How can I calculate area when I have multiple equations for many feature types?  in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817831#M15083</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well if all the other options have not been picked then you know all your calcs are 0.&amp;nbsp; So just check that instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(max(calc1, calc2,calc3,calc4) =0, Do&amp;nbsp;default calc,0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Apr 2019 14:12:12 GMT</pubDate>
    <dc:creator>DougBrowning2</dc:creator>
    <dc:date>2019-04-23T14:12:12Z</dc:date>
    <item>
      <title>How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817812#M15064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have another formula to create, but I am new to Survey123 and am not sure how to get what I need on the survey.&amp;nbsp; The project I am working on is sign inventory and the question I am having trouble with is with the area of each sign (200 different sign types).&amp;nbsp; I will have the width and height of each of the sign, but the signs, being all different shapes, have different area formulas.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;These are all the different formulas:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;(Width * Height)/144 (The majority of the signs have this equation)&lt;/P&gt;&lt;P&gt;(SQUARE(Height/12)) * .76&lt;/P&gt;&lt;P&gt;((1 + (SQRT(2))) * 2) * (SQUARE((Width / 12)/2.4))&lt;/P&gt;&lt;P&gt;(Height * Height /333)&lt;/P&gt;&lt;P&gt;(Width * Width * .0052083)&lt;/P&gt;&lt;P&gt;(Width)/12&lt;/P&gt;&lt;P&gt;(Width * Height)/182.5&lt;/P&gt;&lt;P&gt;(Height * Height * .0042918)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have this for an equation (&lt;STRONG&gt;${SignWidth}*(${SignHeight})div144&lt;/STRONG&gt;) for the majority of the signs, but the&amp;nbsp;more advanced&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;equations I am clueless on.&amp;nbsp; If you know how to write out some of these, that would be very helpful.&amp;nbsp; I am not even sure which survey column I should be writing these in either (calculation, relevent, etc.?)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I am in need of a very intense, nested if statement, but maybe it needs to be broken up in some way. I've included what my data looks like for reference.&amp;nbsp;&amp;nbsp;Please help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Mar 2019 21:51:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817812#M15064</guid>
      <dc:creator>KaitlynAbrahamson</dc:creator>
      <dc:date>2019-03-11T21:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817813#M15065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaitlyn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your calculation for the majority of the signs is good, however you could drop the brackets around height, e.g.&amp;nbsp;&lt;STRONG&gt;(${width} * ${height}) div 144&lt;/STRONG&gt;&lt;EM&gt;.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should be able to specify a different equation for each sign type with a nested &lt;STRONG&gt;if&lt;/STRONG&gt; statement in the calculation column. Please see this handy information on using formulas in calculations, which lists the functions and operators you can use (including &lt;STRONG&gt;if&lt;/STRONG&gt; statements):&amp;nbsp;&lt;A class="link-titled" href="https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformformulas.htm" title="https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformformulas.htm"&gt;Formulas—Survey123 for ArcGIS | ArcGIS&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;EM&gt;(SQUARE(Height/12)) * .76&lt;/EM&gt; would be something like:&amp;nbsp;&lt;STRONG&gt;pow((${height} div 12), 2) * 0.76&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;((1 + (SQRT(2))) * 2) * (SQUARE((Width / 12)/2.4))&lt;/EM&gt; would look something like:&amp;nbsp;&lt;STRONG&gt;((1 + sqrt(2)) * 2) * (pow((${width} div 12), 2) div 2.4)&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2019 01:47:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817813#M15065</guid>
      <dc:creator>Jim-Moore</dc:creator>
      <dc:date>2019-03-13T01:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817814#M15066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help!&amp;nbsp; I ended up trying to use the pulldata function, but am having little luck.&amp;nbsp; My data is not showing up and I am not sure what is wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2019 21:13:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817814#M15066</guid>
      <dc:creator>KaitlynAbrahamson</dc:creator>
      <dc:date>2019-03-25T21:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817815#M15067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaitlyn, how are you using the pulldata function? Would it be possible to share your XLSForm and CSV so I can see how your survey is structured?&amp;nbsp;Thanks, Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2019 22:51:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817815#M15067</guid>
      <dc:creator>Jim-Moore</dc:creator>
      <dc:date>2019-03-25T22:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817816#M15068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have ended up restructuring my survey so many times.&amp;nbsp; I am using the pulldata function to pull what I can for width and height so I can calculate area.&amp;nbsp; It's working well, but now I have run into needing a nested if statement will all my formulas.&amp;nbsp; The syntax is killing me when I try to put them all together.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2019 18:02:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817816#M15068</guid>
      <dc:creator>KaitlynAbrahamson</dc:creator>
      <dc:date>2019-04-18T18:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817817#M15069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On top of that, when I try to do a calculation with even one of my formulas, the area does not change if I alter the width and height in the survey.&amp;nbsp; I'm not sure Survey123 is that dynamic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2019 18:07:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817817#M15069</guid>
      <dc:creator>KaitlynAbrahamson</dc:creator>
      <dc:date>2019-04-18T18:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817818#M15070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would a nested if statement with two of your equations look something like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(selected(${signtype},'R1-1 - Stop'),((1 + sqrt(2)) * 2) * (pow((${width} div 12), 2) div 2.4)), (${width} * ${height}) div 144&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This equation is not working for me.&amp;nbsp; I have never done any calculation this intense and have a lot of questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2019 15:21:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817818#M15070</guid>
      <dc:creator>KaitlynAbrahamson</dc:creator>
      <dc:date>2019-04-22T15:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817819#M15071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Missing the last )&lt;/P&gt;&lt;P&gt;if(selected(${signtype},'R1-1 - Stop'),((1 + sqrt(2)) * 2) * (pow((${width} div 12), 2) div 2.4)), (${width} * ${height}) div 144)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2019 16:10:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817819#M15071</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2019-04-22T16:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817820#M15072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is what I get &lt;STRONG&gt;without&lt;/STRONG&gt; that last &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="478" src="https://community.esri.com/legacyfs/online/442581_pastedImage_1.png" width="883" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the error &lt;STRONG&gt;with&lt;/STRONG&gt; the extra &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" height="474" src="https://community.esri.com/legacyfs/online/442582_pastedImage_2.png" width="876" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2019 16:17:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817820#M15072</guid>
      <dc:creator>KaitlynAbrahamson</dc:creator>
      <dc:date>2019-04-22T16:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817821#M15073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Opps see an extra&amp;nbsp; try&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;if(selected(${signtype},'R1-1 - Stop'),((1 + sqrt(2)) * 2) * (pow((${width} div 12), 2) div 2.4), (${width} * ${height}) div 144)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2019 16:30:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817821#M15073</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2019-04-22T16:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817822#M15074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Doug!&amp;nbsp; That worked!&amp;nbsp; How many of questions am I able to add into a nested if statement?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;STRONG style="border: 0px; font-weight: bold; font-size: 14px;"&gt;These are all the&amp;nbsp;8 formulas I have:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-size: 14px;"&gt;(Width * Height)/144 (The majority of the signs have this equation)&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-size: 14px;"&gt;(SQUARE(Height/12)) * .76&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-size: 14px;"&gt;((1 + (SQRT(2))) * 2) * (SQUARE((Width / 12)/2.4))&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-size: 14px;"&gt;(Height * Height /333)&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-size: 14px;"&gt;(Width * Width * .0052083)&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-size: 14px;"&gt;(Width)/12&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-size: 14px;"&gt;(Width * Height)/182.5&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-size: 14px;"&gt;(Height * Height * .0042918)&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-size: 14px;"&gt;What if I have multiple sign types for each equation (can I go by category in the same equation)?&amp;nbsp; Should I put the equation with the most signs at the end of the equation?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2019 16:48:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817822#M15074</guid>
      <dc:creator>KaitlynAbrahamson</dc:creator>
      <dc:date>2019-04-22T16:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817823#M15075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As many as your brain can keep straight I think.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could also maybe do one if per field then another field that just takes the value that is not 0.&lt;/P&gt;&lt;P&gt;So'&lt;/P&gt;&lt;P&gt;If (case 1, value, 0)&lt;/P&gt;&lt;P&gt;If (case 2, value, 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then&lt;/P&gt;&lt;P&gt;Max(case 1, case 2)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2019 17:14:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817823#M15075</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2019-04-22T17:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817824#M15076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure I know what you mean.&amp;nbsp; Do you mean I should expand my survey by adding more notes with subsequent signArea labels?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;note signArea Sign Area&lt;/STRONG&gt;: if(selected(${signtype},'R1-1 - Stop'),((1 + sqrt(2)) * 2) * (pow((${widthnote} div 12), 2) div 2.4), 0)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;note signArea Sign Area&lt;/STRONG&gt;:&lt;STRONG&gt;&amp;nbsp;&lt;SPAN style="font-weight: 400;"&gt;if(selected(${signtype},'M1-7 - NFS ROUTE MARKER' or 'M1-6 - County Route Sign (1 - 3 digits)'),pow((${heightnote} div 12), 2) * 0.76, 0)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-weight: 400; "&gt;&lt;STRONG&gt;note signArea Sign Area&lt;/STRONG&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;STRONG&gt;&amp;nbsp;&lt;SPAN style="font-weight: 400;"&gt;if(selected(${signtype},'R1-2 - Yield 36x36' or 'R1-2 - Yield (Low Volume Roads)'),${heightnote} * ${heightnote} div 333, 0)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-weight: 400; "&gt;&lt;STRONG style="font-weight: 400; "&gt;&lt;STRONG&gt;note signArea Sign Area&lt;/STRONG&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&amp;nbsp;if(selected(${signtype},'S1-1 - School' or 'SS4-5 - School Speed 15 MPH Ahead (Symbol)'),${widthnote} * ${widthnote} * 0.0052083, 0)&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-weight: 400; "&gt;&lt;STRONG style="font-weight: 400; "&gt;&lt;STRONG&gt;note signArea Sign Area&lt;/STRONG&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&amp;nbsp;if(selected(${signtype},'T3B - Type 3 Barricade'),${widthnote} div 12, 0)&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-weight: 400; "&gt;&lt;STRONG style="font-weight: 400; "&gt;&lt;STRONG&gt;note signArea Sign Area&lt;/STRONG&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&amp;nbsp;if(selected(${signtype},'W10-1 - Grade Crossing Advance Warning'),(${widthnote} * ${heightnote}) div 182.5, 0)&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-weight: 400; "&gt;&lt;STRONG style="font-weight: 400; "&gt;&lt;STRONG&gt;note signArea Sign Area&lt;/STRONG&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&amp;nbsp;if(selected(${signtype},'W14-3 - No Passing Zone (Pennant)'),${heightnote} * ${heightnote} * 0.0042918, 0)&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-weight: 400; "&gt;&lt;STRONG&gt;note signArea Sign Area&lt;/STRONG&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&amp;nbsp;Max((${widthnote} * ${heightnote}) div 144)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that anything close to what you are suggesting?&amp;nbsp; Thanks for all your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2019 19:20:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817824#M15076</guid>
      <dc:creator>KaitlynAbrahamson</dc:creator>
      <dc:date>2019-04-22T19:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817825#M15077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yea that is what I was thinking.&amp;nbsp; Just makes it easier to write.&amp;nbsp; Note if it is a select_one question you can do a = instead of selected().&amp;nbsp; Selected is more for select_multiple.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could make them all Calculate fields so they are hidden to the user.&amp;nbsp; (or use hidden).&amp;nbsp; Can also bind to null then they will not show in the Feature Service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending on your math that last one may be just&amp;nbsp;Max((${widthnote} * ${heightnote}).&amp;nbsp; Not sure about the div 144 because it will do that on all of them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2019 19:27:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817825#M15077</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2019-04-22T19:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817826#M15078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like I am having trouble with the "or" statements in my calculations and the "Max" line for the final calculation.&amp;nbsp; Any idea why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, it tells me I am missing a ")" when I get rid of "selected."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2019 20:18:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817826#M15078</guid>
      <dc:creator>KaitlynAbrahamson</dc:creator>
      <dc:date>2019-04-22T20:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817827#M15079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you take out selected you must remove the ( and the ) wherever you used it.&amp;nbsp; See below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the Or statements you must not be a programmer &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;.&lt;/P&gt;&lt;P&gt;Cannot do this&lt;/P&gt;&lt;P&gt;if(selected(${signtype},'S1-1 - School' or 'SS4-5 - School Speed 15 MPH Ahead (Symbol)')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Must be a full compare for each Or.&lt;/P&gt;&lt;P&gt;if(selected(${signtype},'S1-1 - School') or selected( &lt;SPAN&gt;${signtype},&lt;/SPAN&gt;'SS4-5 - School Speed 15 MPH Ahead (Symbol)'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if a select one it is cleaner to do&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if(${signtype}='S1-1 - School' or &lt;/SPAN&gt;&lt;SPAN&gt;${signtype}=&lt;/SPAN&gt;&lt;SPAN&gt;'SS4-5 - School Speed 15 MPH Ahead (Symbol)',yes,no)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also are your Names all of this -&amp;nbsp;'SS4-5 - School Speed 15 MPH Ahead (Symbol)' or is that just the Label?&amp;nbsp; You need to compare with Name not label.&amp;nbsp; I would not put all those special chars in my data.&amp;nbsp; For sure you cannot have new lines or any commas in your lists!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2019 20:27:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817827#M15079</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2019-04-22T20:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817828#M15080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Kaitlyn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope things are going well for you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure I fully understand the question. Is there a criteria that is met in order to determine area calculation? I'm guessing if its octagonal such as your stop sign you use a certain equation correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Might I suggest you use the look up function where you define each sign with the equation so that it pulls that equation for that criteria. I wonder how you're setting up your pull data currently that you are still looking to use nested statements.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://youtu.be/CTq-ux2v5ds" title="https://youtu.be/CTq-ux2v5ds"&gt;Survey123 for ArcGIS – XLSForm: Enabling CSV Data into your Survey - YouTube&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if that helps. Nested if functions are exhausting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2019 21:23:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817828#M15080</guid>
      <dc:creator>BenjaminHanzen</dc:creator>
      <dc:date>2019-04-22T21:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817829#M15081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think first you need to identify scenarios for each equation to use, then come up with code for each scenario/equation e.g. 1, 2,3 for people to enter in the field/office, also you can add another field for exceptions, then query&amp;nbsp;each code (may be with exception) to apply the right equation.&amp;nbsp; Good luck, Abdo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2019 13:36:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817829#M15081</guid>
      <dc:creator>AbdoAbdelrasoul1</dc:creator>
      <dc:date>2019-04-23T13:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817830#M15082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Doug,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I am getting really close now.&amp;nbsp; I am having trouble with the last statement though.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it is obvious by now that I have never been and am not now a programmer.&amp;nbsp; Your suggestions really helped.&amp;nbsp; Technically, the sign names are as long and horrible as you say.&amp;nbsp; It is not the label.&amp;nbsp; I could and probably should separate them and make them easier to work with, but I am scared to undo my work and potentially mess something up.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure what to do for my last statement.&amp;nbsp; All the sign areas are still 0, even when the sign is specified to use a different equation.&amp;nbsp; I want all signs to use my final equation if they were not previously mentioned in the other sign area equations.&amp;nbsp; This is my last statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(${signtype}='R1-1 - Stop' or ${signtype}='T3B - Type 3 Barricade' or ${signtype}='W10-1 - Grade Crossing Advance Warning' or ${signtype}='W14-3 - No Passing Zone (Pennant)' or ${signtype}='S1-1 - School' or&amp;nbsp;${signtype}='SS4-5 - School Speed 15 MPH Ahead (Symbol)' or ${signtype}='M1-7 - NFS ROUTE MARKER' or ${signtype}='M1-6 - County Route Sign (1 - 3 digits)' or ${signtype}='R1-2 - Yield 36x36' or ${signtype}='R1-2 - Yield (Low Volume Roads)',0,(${widthnote} * ${heightnote}) div 144)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I basically just reversed the statement and included all the signs that use other equations, but I think that just defaults ALL the signs to use the last equation.&amp;nbsp; I'm thinking I'm not going about it the right way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your meticulous help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2019 13:54:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817830#M15082</guid>
      <dc:creator>KaitlynAbrahamson</dc:creator>
      <dc:date>2019-04-23T13:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate area when I have multiple equations for many feature types?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817831#M15083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well if all the other options have not been picked then you know all your calcs are 0.&amp;nbsp; So just check that instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(max(calc1, calc2,calc3,calc4) =0, Do&amp;nbsp;default calc,0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2019 14:12:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-can-i-calculate-area-when-i-have-multiple/m-p/817831#M15083</guid>
      <dc:creator>DougBrowning2</dc:creator>
      <dc:date>2019-04-23T14:12:12Z</dc:date>
    </item>
  </channel>
</rss>

