<?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: Survey123 Report Syntax Issues with Zeros vs Null/Empty in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658088#M64461</link>
    <description>&lt;P&gt;Have you considered adding a calculate to your Survey123 Excel to give you a non-zero output. Basically, add the logic you are doing in the Feature Report could be added to S123 instead. That would handle 0 and null.&lt;/P&gt;</description>
    <pubDate>Wed, 15 Oct 2025 16:02:42 GMT</pubDate>
    <dc:creator>abureaux</dc:creator>
    <dc:date>2025-10-15T16:02:42Z</dc:date>
    <item>
      <title>Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657753#M64434</link>
      <description>&lt;P&gt;Hi! I've got a working report template, but I have some text responses that I only want to appear when relevant. My issue is the input is a number and so when it's empty, the report still evaluates it as a zero, but zero is also a valid input and I need a different message for a null/empty field vs &amp;gt;=0.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;${if NitrateResult == "" || NitrateResult == null} evaluates as true in the report even if the user actually entered in zero. And the reverse, if the field is empty:&amp;nbsp;${if NitrateResult &amp;gt;=0 &amp;amp;&amp;amp; NitrateResult &amp;lt;0.5} evaluates as true even though the user didn't enter in 0.&lt;BR /&gt;&lt;BR /&gt;I'm wondering how to tackle this so both messages don't appear when the field is empty or zero which is what is happening now:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;${if NitrateResult == "" || NitrateResult == null}Not Reported ${/}${if NitrateResult &amp;gt;=0 &amp;amp;&amp;amp; NitrateResult &amp;lt;0.5}Your nitrate results were under detection. This means that your water is below the Health Risk Limit of 10 mg/L (milligrams per liter) for nitrate. ${/}&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;I've tried ${if NitrateResult != "" &amp;amp;&amp;amp; NitrateResult != null &amp;amp;&amp;amp; NitrateResult &amp;gt;=0 &amp;amp;&amp;amp; NitrateResult &amp;lt;0.5}, but Survey123 just errors and fails to fetch the report:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;${if NitrateResult == "" || NitrateResult == null}Not Reported ${/}${if NitrateResult != "" &amp;amp;&amp;amp; NitrateResult != null &amp;amp;&amp;amp; NitrateResult &amp;gt;=0 &amp;amp;&amp;amp; NitrateResult &amp;lt;0.5}Your nitrate results were under detection. This means that your water is below the Health Risk Limit of 10 mg/L (milligrams per liter) for nitrate. ${/}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This prevents both messages from appearing when the user enters 0 or nothing, but the second message doesn't appear when the user enters zero, which is what I'm after:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;${if NitrateResult == "" || NitrateResult == null}Not Reported ${/}${if NitrateResult &amp;gt;0 &amp;amp;&amp;amp; NitrateResult &amp;lt;0.5}Your nitrate results were under detection. This means that your water is below the Health Risk Limit of 10 mg/L (milligrams per liter) for nitrate. ${/}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2025 17:20:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657753#M64434</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2025-10-14T17:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657811#M64439</link>
      <description>&lt;P&gt;You might try is putting parenthesis around each equation in the "if" statement. When to use parenthesis is a report template "if" statement is very poorly documented, but sometimes it needs to be done. In my case it was when trying to check if a choice was selected. If I didn't use the parenthesis like so: ${if (Pile_Activity | selected:"Replacement") || (Pile_Activity | selected:"Removal")} it wouldn't work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For your last snippet, you might try:&amp;nbsp;&lt;/P&gt;&lt;P&gt;${if (NitrateResult &amp;gt;0) &amp;amp;&amp;amp; (NitrateResult &amp;lt;0.5)} and see if that works.&lt;/P&gt;&lt;P&gt;Alternately, if you can combine results for 0 and null, you might try doing some template math. I had a report where I wanted to have it fill in 0 if the value was null or empty and I couldn't get the if statement to work.&amp;nbsp;I also recall it not working when 0 was entered as a value. I worked around it by doing some math ${int_field + 0} which adds 0 (in the report not the database) to everything in the field, including nulls and empty values which converts them to 0 and doesn't change a value (e.g. 0.5 + 0 = 0.5).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2025 19:47:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657811#M64439</guid>
      <dc:creator>TylerGraham2</dc:creator>
      <dc:date>2025-10-14T19:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657833#M64441</link>
      <description>&lt;P&gt;Sadly parentheses did not help.&lt;BR /&gt;&lt;BR /&gt;So to clarify, everything "works" without parentheses. It's just that ${ ... == ''} and ${ ==null} and ${ ... ==0} are all considered the same.&lt;BR /&gt;&lt;BR /&gt;The report sees empty, null, and zero the same. But I think zero and null/empty are different.&lt;/P&gt;&lt;P&gt;So whether I do:&lt;BR /&gt;&lt;SPAN&gt;${if (NitrateResult &amp;gt;0) &amp;amp;&amp;amp; (NitrateResult &amp;lt;0.5)}&lt;BR /&gt;${if NitrateResult &amp;gt;0 &amp;amp;&amp;amp; NitrateResult &amp;lt;0.5} &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;... both work fine either way and behave the same.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The issue is even if the user entered nothing, and the cell is empty, the report or the database still sees it as zero and returns the related expressions as true. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So I DONT want it to add zero to anything, I just want it to believe the database that if the cell is null - it is null and not zero. And if it's zero, then its not null or empty.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Right now if the answer was 0, the report sees that as the same as null or empty&lt;/P&gt;&lt;P&gt;If there is no answer, the report sees that as the same as 0&lt;/P&gt;&lt;P&gt;So I have no way to distinguish a response of 0 from a response of null.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2025 20:18:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657833#M64441</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2025-10-14T20:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657839#M64443</link>
      <description>&lt;P&gt;It might be time to report it to esri, if you haven't already. I was able to work around it in mine because in my case null was a proxy for 0, but since you can't operate on that assumption, you need it to recognize the difference, and I think that will be esri's job.&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2025 20:30:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657839#M64443</guid>
      <dc:creator>TylerGraham2</dc:creator>
      <dc:date>2025-10-14T20:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657842#M64445</link>
      <description>&lt;P&gt;Have you tried something like this, not sure it will work any different given your iterations above&amp;nbsp; but worth a shot.&lt;/P&gt;&lt;LI-CODE lang="c"&gt;${if NitrateResult} Text Here ${/}&lt;/LI-CODE&gt;&lt;LI-CODE lang="c"&gt;${if NitrateResult == ""} Text Here ${/}&lt;/LI-CODE&gt;&lt;P&gt;&lt;A href="https://doc.arcgis.com/en/survey123/browser/analyze-results/featurereport-conditionalelements.htm" target="_blank"&gt;https://doc.arcgis.com/en/survey123/browser/analyze-results/featurereport-conditionalelements.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2025 20:42:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657842#M64445</guid>
      <dc:creator>Neal_t_k</dc:creator>
      <dc:date>2025-10-14T20:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657853#M64446</link>
      <description>&lt;P&gt;Or possibly this, again not sure, but worth a shot:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;${if NitrateResult != "" &amp;amp;&amp;amp; NitrateResult &amp;lt; 0.5}
  Your nitrate results were under detection...
${/}
${if NitrateResult == ""}
  Not Reported
${/}&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 14 Oct 2025 21:11:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657853#M64446</guid>
      <dc:creator>Neal_t_k</dc:creator>
      <dc:date>2025-10-14T21:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657866#M64448</link>
      <description>&lt;P&gt;Thanks! I did try this ${if NitrateResult} {/} wrapping. Sadly, it still treats 0 as null or empty. &lt;span class="lia-unicode-emoji" title=":loudly_crying_face:"&gt;😭&lt;/span&gt; I DONT GET IT!!&lt;BR /&gt;&lt;BR /&gt;however using ${if NitrateResult} {/} was helpful to help clean up my report.&lt;/P&gt;&lt;P&gt;And it did remove the issue where if the user typed in 0 it would show both the == "" || == null and the &amp;gt;= 0 expressions. So now it just shows Not Reported.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;So a survey response of null and zero are still treated the same, before&amp;nbsp;${if NitrateResult} {/} is evaluated. The survey however does store the zero or null as entered into the form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;${if NitrateResult == "" || NitrateResult == null} Not Reported 
${/}
${if NitrateResult}
${if NitrateResult &amp;gt;= 0 &amp;amp;&amp;amp; NitrateResult &amp;lt; 0.5} Your nitrate results were under detection... 
${/}
${if NitrateResult &amp;gt;= 0.5 &amp;amp;&amp;amp; NitrateResult &amp;lt; 3} You had detectable levels ... 
${/}
${if NitrateResult &amp;gt;= 3 &amp;amp;&amp;amp; NitrateResult &amp;lt; 10} Though your nitrate results... 
${/}
${if NitrateResult &amp;gt;= 10} Your nitrate results meet or exceed ... 
${/}${/}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2025 22:08:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657866#M64448</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2025-10-14T22:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657869#M64449</link>
      <description>&lt;P&gt;For some reason including this expression causes the report to error. It just fails to fetch. I've tried it a few times. I've double checked typos. It just doesn't like != "" or something!&lt;/P&gt;&lt;P&gt;if NitrateResult != ""&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2025 22:20:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657869#M64449</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2025-10-14T22:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657901#M64451</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/425496"&gt;@Teresa_Blader&lt;/a&gt;&amp;nbsp;Ok thinking outside the report here.&amp;nbsp; Can you still modify the form/layer.&amp;nbsp; What if you did the calculation/conditon in the form itself.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Calculated field: If(${NitrateResult})='','Not Reported', if(${NitrateResult}&amp;gt;=0 and ${NitrateResult}&amp;lt;0.5,'Text',if${NitrateResult}&amp;gt;=0.5 and ${NitrateResult}&amp;lt;3,'Text2',if(${NitrateResult}&amp;gt;=3 and ${NitrateResult}&amp;lt;10,'Text3','Text4))))&lt;/P&gt;&lt;P&gt;Also might have to do something like this for the first if:&amp;nbsp; if(string-length(${NitrateResult})=0,......&lt;/P&gt;&lt;P&gt;Then just call the calculated field in the report.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 02:21:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1657901#M64451</guid>
      <dc:creator>Neal_t_k</dc:creator>
      <dc:date>2025-10-15T02:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658088#M64461</link>
      <description>&lt;P&gt;Have you considered adding a calculate to your Survey123 Excel to give you a non-zero output. Basically, add the logic you are doing in the Feature Report could be added to S123 instead. That would handle 0 and null.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 16:02:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658088#M64461</guid>
      <dc:creator>abureaux</dc:creator>
      <dc:date>2025-10-15T16:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658110#M64463</link>
      <description>&lt;P&gt;That was where we started originally actually, but then these giant paragraphs of interpretations and recommendations are getting stored into the database which we're not interested in doing so I'd really like to find a way to still just keep those in the report and not in the database. Right now the survey itself brings in those as notes that aren't stored in the database.&lt;BR /&gt;&lt;BR /&gt;I appreciate the idea though!&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 16:31:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658110#M64463</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2025-10-15T16:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658113#M64464</link>
      <description>&lt;P&gt;What would that look like? Like if the user inputs 0 have the survey change it to -1 or something?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'd really like the keep zero as a valid response in the database and it not be seen as null in the report.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 16:34:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658113#M64464</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2025-10-15T16:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658121#M64466</link>
      <description>&lt;P&gt;Honestly, it could look like whatever you'd like.&lt;/P&gt;&lt;P&gt;And I agree. The laboratory result should remain as-is. You would have separate field that would be used exclusively for the Feature Report formatting. For example, you could so something like:&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;&lt;STRONG&gt;Result&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;&lt;STRONG&gt;Outcome&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;empty&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;0&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="25px"&gt;&amp;gt;=0 &amp;amp;&amp;amp; &amp;lt;0.5&lt;/TD&gt;&lt;TD height="25px"&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Then in your Feature Report, you would use something like &lt;STRONG&gt;${if calculate_field="A"}Not Reported.${/}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Just one note if you try this, use string-length() to test for an empty field. A string-length of 0 means the field is empty.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 16:50:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658121#M64466</guid>
      <dc:creator>abureaux</dc:creator>
      <dc:date>2025-10-15T16:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658126#M64467</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/425496"&gt;@Teresa_Blader&lt;/a&gt;&amp;nbsp;This is the same concept as I explained previous, but instead of a paragraph, you are just using a placeholder for your text. Then applying the conditions again in the report to put in your text..&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 17:06:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658126#M64467</guid>
      <dc:creator>Neal_t_k</dc:creator>
      <dc:date>2025-10-15T17:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Report Syntax Issues with Zeros vs Null/Empty</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658128#M64468</link>
      <description>&lt;P&gt;Oh gotcha!&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;That might be the best way to tackle it, kind of similar to the other idea from &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/763693"&gt;@Neal_t_k&lt;/a&gt;&amp;nbsp;, but just not including the whole paragraph of text. Or maybe at a minimum I have a letter designation if it is 0 in the survey so I don't have to notate all the ranges for all the questions.&lt;BR /&gt;&lt;BR /&gt;Granted the idea of adding a whole new field for all 20 of my lab result fields just to store a code is kinda bleh haha&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 17:07:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-report-syntax-issues-with-zeros-vs-null/m-p/1658128#M64468</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2025-10-15T17:07:04Z</dc:date>
    </item>
  </channel>
</rss>

