<?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: Is there a bug in this lesson? in Esri Tutorials Questions</title>
    <link>https://community.esri.com/t5/esri-tutorials-questions/is-there-a-bug-in-this-lesson/m-p/274203#M95</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you&amp;nbsp;Erica, David, and Xander. We will make this fix for our next lesson release!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Aug 2020 16:54:07 GMT</pubDate>
    <dc:creator>HeatherSmith</dc:creator>
    <dc:date>2020-08-12T16:54:07Z</dc:date>
    <item>
      <title>Is there a bug in this lesson?</title>
      <link>https://community.esri.com/t5/esri-tutorials-questions/is-there-a-bug-in-this-lesson/m-p/274200#M92</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am doing the lesson&amp;nbsp;&lt;A class="link-titled" href="https://learn.arcgis.com/en/projects/predict-floods-with-unit-hydrographs/" title="https://learn.arcgis.com/en/projects/predict-floods-with-unit-hydrographs/"&gt;Predict floods with unit hydrographs | Learn ArcGIS&lt;/A&gt;&amp;nbsp;and on the section for "Create a Unit Hydrograph: Prepare the Unit Hydrograph Table," #13, I am getting this error:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR 002717: Invalid Arcade expression, Arcade error: Semicolon or new line expected, Script line: 1&lt;/P&gt;&lt;P&gt;Failed to execute (CalculateField).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there something wrong with the code !Count! * 30 * 30?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Erica&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2020 03:30:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/esri-tutorials-questions/is-there-a-bug-in-this-lesson/m-p/274200#M92</guid>
      <dc:creator>EricaPrice</dc:creator>
      <dc:date>2020-08-11T03:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a bug in this lesson?</title>
      <link>https://community.esri.com/t5/esri-tutorials-questions/is-there-a-bug-in-this-lesson/m-p/274201#M93</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like Python Field Calculator syntax?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't use Arcade unfortunately, but the documentation suggests a syntax like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #4c4c4c; font-family: 'Consolas','Andale Mono','Lucida Console','Monaco',monospace; font-size: 14.8px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;$feature["fieldname"] * 30 * 30&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2020 10:17:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/esri-tutorials-questions/is-there-a-bug-in-this-lesson/m-p/274201#M93</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2020-08-11T10:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a bug in this lesson?</title>
      <link>https://community.esri.com/t5/esri-tutorials-questions/is-there-a-bug-in-this-lesson/m-p/274202#M94</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/356506" target="_blank"&gt;Erica Price&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;David is correct. This is an error in the lesson:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/503026_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For &lt;STRONG&gt;Arcade&lt;/STRONG&gt; you should use:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Count"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;30&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;30&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;// or&lt;/SPAN&gt;
$feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Count &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;30&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;30&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also change it to &lt;STRONG&gt;Python&lt;/STRONG&gt; and use the formula mentioned in the lesson:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;!Count! &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;30&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;30&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:23:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/esri-tutorials-questions/is-there-a-bug-in-this-lesson/m-p/274202#M94</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T13:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a bug in this lesson?</title>
      <link>https://community.esri.com/t5/esri-tutorials-questions/is-there-a-bug-in-this-lesson/m-p/274203#M95</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you&amp;nbsp;Erica, David, and Xander. We will make this fix for our next lesson release!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2020 16:54:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/esri-tutorials-questions/is-there-a-bug-in-this-lesson/m-p/274203#M95</guid>
      <dc:creator>HeatherSmith</dc:creator>
      <dc:date>2020-08-12T16:54:07Z</dc:date>
    </item>
  </channel>
</rss>

