<?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: Arcade Find  Weekday &amp;amp;&amp;amp; Time in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1511875#M86139</link>
    <description>&lt;P&gt;I used a testing layer to try this out and it does show different symbols. I put that same code in the Label expression for more testing.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Snag_1cd80f5.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/111020i0F62F2A6D2BF3BD1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Snag_1cd80f5.png" alt="Snag_1cd80f5.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
    <pubDate>Mon, 29 Jul 2024 20:16:25 GMT</pubDate>
    <dc:creator>KenBuja</dc:creator>
    <dc:date>2024-07-29T20:16:25Z</dc:date>
    <item>
      <title>Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510626#M86047</link>
      <description>&lt;P&gt;This is a nice snippet I got from an ESRI dev that returns what day a location has open in the Pro Symbology Expression Builder. It uses the &lt;EM&gt;DaysOpen&lt;/EM&gt; field in my layer. My field values are like so: &lt;EM&gt;Su,M,Tu,W,Th,F,Sa.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Here is the expression:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var days_abbr = ["Su", "M", "Tu", "W", "Th", "F", "Sa"];
var days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
var weekday = Weekday(Today());

If(Find(days_abbr[weekday],$feature.DaysOpen,0)!=-1) {
  return "Open (" + days[weekday] + ")";
} 
else {
  return "Closed";
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question here is how to expand on that to include time using the &lt;EM&gt;Find()&lt;/EM&gt; function. I created similar variables to get the time.&lt;/P&gt;&lt;P&gt;Here is one attempt which returns an error (see pseudo text below) on the &lt;EM&gt;If() &lt;/EM&gt;line.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var days_abbr = ["Su", "M", "Tu", "W", "Th", "F", "Sa"];
var days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
var weekday = Weekday(Today());

var hours = ["8","8.5","9","9.5"]; //I also tried ["8","8:30","9","9:30"] which resulted in error
var timeofday = Time(Now()); //this displays the time the way I anticipated it

If(Find(days_abbr[weekday],$feature.DaysOpen,0)!=-1 &amp;amp;&amp;amp; Find(hours[timeofday],$feature.Time,0)!=-1) {
  return "Open Now";
} 
else {
  return "Closed";
}

// Error: Invalid expression. Integer index expected.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 14:51:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510626#M86047</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2024-07-26T14:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510639#M86048</link>
      <description>&lt;P&gt;It may be as simple as you are missing the closing right parenthesis for the IF statement on line 8.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 15:07:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510639#M86048</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2024-07-26T15:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510656#M86049</link>
      <description>&lt;P&gt;What type of field is "Time": a date field, a string field, or a numeric field? What type of values does it contain?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 15:34:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510656#M86049</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-07-26T15:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510661#M86051</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks for pointing that out. It's a text field. Same goes for the &lt;EM&gt;DaysOpen&lt;/EM&gt; field.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 15:36:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510661#M86051</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2024-07-26T15:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510662#M86052</link>
      <description>&lt;P&gt;And what types of values would it contain?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 15:37:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510662#M86052</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-07-26T15:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510669#M86054</link>
      <description>&lt;P&gt;The values would be opening and closing times. For example:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;8, 4:30&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;9,5&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;1,3&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 15:46:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510669#M86054</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2024-07-26T15:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510714#M86059</link>
      <description>&lt;P&gt;OK, that made it a bit tougher. Here's my solution, with one big assumption. I assumed that there wouldn't be any openings/closings before 6 am or after 6 pm (line 7) to convert it to a 24 hour time. I used the dummy variables "DaysOpen" and "fTime" for testing, which you can replace with your fields.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;function ConvertTime(input) {
  var theTime = input;
  if (Find(":", theTime) &amp;gt; -1) {
    var times = split(theTime, ":");
    theTime = Number(times[0]) + Number(times[1]) / 60;
  }
  iif(theTime &amp;lt; 6, Number(theTime) + 12, Number(theTime));
}

var DaysOpen = "Th, F";
var fTime = "8, 2";
var days_abbr = ["Su", "M", "Tu", "W", "Th", "F", "Sa"];
var weekday = Weekday(Today());
var timeofday = Time(Now());
var current = hour(timeofday) + (minute(timeofday)/60); 
var opening = Split(fTime, ",");

var start = ConvertTime(opening[0]);
var end = ConvertTime(opening[1]);

if (Find(days_abbr[weekday], DaysOpen, 0) != -1 &amp;amp;&amp;amp; (current &amp;gt;= start &amp;amp;&amp;amp; current &amp;lt;= end)) {
  return "Open Now";
} else {
  return "Closed";
}&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 26 Jul 2024 17:03:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510714#M86059</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-07-26T17:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510808#M86067</link>
      <description>&lt;P&gt;Thanks for that. I replaced the dummy variables and it verified OK. However, there was only the &lt;EM&gt;Closed &lt;/EM&gt;symbol class showing. It's not returning &lt;EM&gt;Open Now.&lt;/EM&gt; So, it's hard telling where it's going wrong.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;  var DaysOpen = "Su,M,Tu,W,Th,F,Sa";
  var fTime = "8,8:30,9,9:30,10,10:30,11,11:30,12,12:30,1,1:30,2:30,3,3:30,4,4:30,5,5:30,6,6:30,7,7:30,8,8:30,9";&lt;/LI-CODE&gt;&lt;P&gt;Unfortunately, there are more that a few &lt;EM&gt;Time &lt;/EM&gt;field values that are after 6pm.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 18:54:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510808#M86067</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2024-07-26T18:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510819#M86070</link>
      <description>&lt;P&gt;You have to replace the test variables with your feature like this:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;function ConvertTime(input) {
  var theTime = input;
  if (Find(":", theTime) &amp;gt; -1) {
    var times = split(theTime, ":");
    theTime = Number(times[0]) + Number(times[1]) / 60;
  }
  iif(theTime &amp;lt; 6, Number(theTime) + 12, Number(theTime));
}

//var DaysOpen = "Th, F";
//var fTime = "8, 2";
var days_abbr = ["Su", "M", "Tu", "W", "Th", "F", "Sa"];
var weekday = Weekday(Today());
var timeofday = Time(Now());
var current = hour(timeofday) + (minute(timeofday)/60); 
var opening = Split($feature.Time, ",");

var start = ConvertTime(opening[0]);
var end = ConvertTime(opening[1]);

if (Find(days_abbr[weekday], $feature.DaysOpen, 0) != -1 &amp;amp;&amp;amp; (current &amp;gt;= start &amp;amp;&amp;amp; current &amp;lt;= end)) {
  return "Open Now";
} else {
  return "Closed";
}&lt;/LI-CODE&gt;&lt;P&gt;What are the earliest and latest times?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 19:21:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510819#M86070</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-07-26T19:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510828#M86071</link>
      <description>&lt;P&gt;Ah, yes. Thank you. Earlier I changed the values to 24hr times. The earliest is 8:00 and the latest is 21:00. There's also one oddball open 24hr location, which I'll have to work in somehow.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="times.png" style="width: 287px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/110792i4FA2B84836A1D583/image-dimensions/287x417?v=v2" width="287" height="417" role="button" title="times.png" alt="times.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 19:36:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510828#M86071</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2024-07-26T19:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510846#M86075</link>
      <description>&lt;P&gt;The null field shouldn't be a problem, but those other values for Time are confusing. What does something like "9:30, 10, 11, 15:30, 18:30"&amp;nbsp; or "9, 8, 19, 21" represent?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 20:06:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510846#M86075</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-07-26T20:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510854#M86076</link>
      <description>&lt;P&gt;Here's the bigger picture. The locations rarely have simple hours. It changes on certain days and on weekends. My logic along the way was to put the starting and end times for each day into the &lt;EM&gt;Time&lt;/EM&gt; field.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JaredPilbeam2_1-1722025071383.png" style="width: 743px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/110799i0E3C3D8C4A190CF6/image-dimensions/743x405?v=v2" width="743" height="405" role="button" title="JaredPilbeam2_1-1722025071383.png" alt="JaredPilbeam2_1-1722025071383.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Edit: &lt;/STRONG&gt;I'm more or less experimenting on a working dataset. The LocationHours field is being used in the pop-up currently.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 20:26:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510854#M86076</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2024-07-26T20:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510900#M86083</link>
      <description>&lt;P&gt;I found it almost impossible to figure out how to extract the days and times logically in an Arcade script. The only thing I could come up with it to have a string field (LocationHoursByDay) with each day's time span or closed in a concatenated list, where &lt;STRONG&gt;"M - Tr 9:30 AM - 8 PM, F 9:30 AM - 6:30 PM, Sa - 10 AM - 3:30 PM, Su 11 AM - 3:30 PM"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;would be represented as &lt;STRONG&gt;"9:30-20, 9:30-20, 9:30-20, 9:30-20, 9:30-18:30, 10-15:30, 11-15:30"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;while the line &lt;STRONG&gt;"M,W,F 8:30 AM - 11 AM"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;would be &lt;STRONG&gt;"8:30-11, closed, 8:30-11, closed,&amp;nbsp;8:30-11, closed, closed"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;That field would be utilized in this script&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;function ConvertTime(input) {
  var theTime = input;
  if (Find(":", theTime) &amp;gt; -1) {
    var times = split(theTime, ":");
    theTime = Number(times[0]) + Number(times[1]) / 60;
  }
  return Number(theTime);
}
var current = ConvertTime(Time(Now()));
var fTime = '8:30-11, closed, 8:30-11, closed, 8:30-11, closed, closed'; //$feature.LocationHoursByDay,
var times = Split(fTime, ', ')
var todaysTime = times[Weekday(Today()) - 1];
if (todaysTime == 'closed') return 'Closed'

var todaysTimes = Split(todaysTime, '-')
var start = ConvertTime(todaysTimes[0]);
var end = ConvertTime(todaysTimes[1]);

iif(current &amp;gt;= start &amp;amp;&amp;amp; current &amp;lt;= end, 'Open Now', 'Closed')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 21:18:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1510900#M86083</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-07-26T21:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1511841#M86136</link>
      <description>&lt;P&gt;Thanks for the code. Unless I'm doing something wrong, I'm only seeing two &lt;EM&gt;Closed &lt;/EM&gt;symbols created (highlighted in table below). And what's odd is that when when you zoom in &lt;EM&gt;Closed &lt;/EM&gt;symbols for all features appear. There are no &lt;EM&gt;Open Now&lt;/EM&gt; symbols created.&lt;/P&gt;&lt;P&gt;On what's your line 10 I used this variable:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fTime = $feature.LocationHoursByDay&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a text field called LocationHoursByDay.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JaredPilbeam2_1-1722280830925.png" style="width: 722px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/111016i0A10659856566D00/image-dimensions/722x322?v=v2" width="722" height="322" role="button" title="JaredPilbeam2_1-1722280830925.png" alt="JaredPilbeam2_1-1722280830925.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 19:56:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1511841#M86136</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2024-07-29T19:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1511875#M86139</link>
      <description>&lt;P&gt;I used a testing layer to try this out and it does show different symbols. I put that same code in the Label expression for more testing.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Snag_1cd80f5.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/111020i0F62F2A6D2BF3BD1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Snag_1cd80f5.png" alt="Snag_1cd80f5.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 20:16:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1511875#M86139</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-07-29T20:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1511889#M86142</link>
      <description>&lt;P&gt;I see what I did wrong. You have a space after the comma in the string here. In my table I didn't have spaces. I removed it in the script and it worked! Thanks a lot.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var times = Split(fTime, ',')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I'm still getting weird behavior with what appears to be scale. Most features aren't visible until I zoom in. And I do not have the layer set with zoom in/out values. I'll have to investigate.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="openclosed.gif" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/111025i07CE3DDA4BF51877/image-size/large?v=v2&amp;amp;px=999" role="button" title="openclosed.gif" alt="openclosed.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 20:38:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1511889#M86142</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2024-07-29T20:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1511898#M86143</link>
      <description>&lt;P&gt;Is there a scale restriction on the layer? Check in the layer properties to see if the layer is showing at all scales.&lt;/P&gt;&lt;P&gt;And you can always change the split function to take into account a space after the comma.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var times = Split(fTime, ', ')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 20:46:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1511898#M86143</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-07-29T20:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Find  Weekday &amp;&amp; Time</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1512357#M86185</link>
      <description>&lt;P&gt;I created a new post regarding the issue.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-questions/symbols-dissapearing-after-applying-arcade-script/m-p/1512353#M86184" target="_blank"&gt;https://community.esri.com/t5/arcgis-pro-questions/symbols-dissapearing-after-applying-arcade-script/m-p/1512353#M86184&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 14:30:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-find-weekday-amp-amp-time/m-p/1512357#M86185</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2024-07-30T14:30:59Z</dc:date>
    </item>
  </channel>
</rss>

