<?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: AND operator in filter widget in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1610905#M18740</link>
    <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/661794"&gt;@NicoleDaniels802&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hmm that is some strange action, when you say that "is not blank" didn't accomplish what you wanted, I think it may be related to this bug here: &lt;A href="https://support.esri.com/en-us/bug/in-arcgis-experience-builder-the-sql-expression-builder-bug-000159713" target="_blank" rel="noopener"&gt;BUG-000159713&lt;/A&gt; , would you be able to provide any screenshots of what you're seeing on your side?&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
    <pubDate>Thu, 01 May 2025 19:14:51 GMT</pubDate>
    <dc:creator>CodyPatterson</dc:creator>
    <dc:date>2025-05-01T19:14:51Z</dc:date>
    <item>
      <title>AND operator in filter widget</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1610886#M18737</link>
      <description>&lt;P&gt;I'm trying to use the filter widget on a data table. I want a user to complete all 3 criteria in the filter (first name, date of birth, and last name in order for the table to filter. I've used the below SQL expression. However, if a user enters 1 of the 3 criteria, the table filters. I want to enforce the AND such that all 4 criteria MUST be completed. How do I do this?&lt;/P&gt;&lt;P&gt;SQL Expression:&lt;/P&gt;&lt;P&gt;((First Name = ?) and (Date of Birth = ?))&amp;nbsp;and (Last Name = ?))&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 18:41:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1610886#M18737</guid>
      <dc:creator>NicoleDaniels802</dc:creator>
      <dc:date>2025-05-01T18:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in filter widget</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1610887#M18738</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/661794"&gt;@NicoleDaniels802&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You're probably looking for something like this here:&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;(First Name = ? AND ? IS NOT NULL AND ? &amp;lt;&amp;gt; '') 
AND (Date of Birth = ? AND ? IS NOT NULL) 
AND (Last Name = ? AND ? IS NOT NULL AND ? &amp;lt;&amp;gt; '')&lt;/LI-CODE&gt;&lt;P&gt;? is not null makes sure that there's a value and ? &amp;lt;&amp;gt; '' makes sure that it's not an empty string if that applies.&lt;/P&gt;&lt;P&gt;As long as all of these are separated by AND, each must be true in order to pass.&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 18:47:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1610887#M18738</guid>
      <dc:creator>CodyPatterson</dc:creator>
      <dc:date>2025-05-01T18:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in filter widget</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1610895#M18739</link>
      <description>&lt;P&gt;Thanks so much, Cody! For simplicity, I tried this with 2/3 fields; however, it's still not forcing the AND.&lt;/P&gt;&lt;P&gt;Here is the updated SQL Statement:&amp;nbsp; ((First Name = ?) and (First Name ≠ 'NULL') and (First Name ≠ '&amp;lt;&amp;gt;')) and (Date of Birth = ?) and (Date of Birth ≠ 'NULL')&lt;/P&gt;&lt;P&gt;I’m assuming that ‘NULL’ is being treated as a string (which we don’t want) – but I can’t find a way to filter for “is not null” otherwise. I tried “is not blank” and it also does not accomplish what I need it to.&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 19:02:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1610895#M18739</guid>
      <dc:creator>NicoleDaniels802</dc:creator>
      <dc:date>2025-05-01T19:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in filter widget</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1610905#M18740</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/661794"&gt;@NicoleDaniels802&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hmm that is some strange action, when you say that "is not blank" didn't accomplish what you wanted, I think it may be related to this bug here: &lt;A href="https://support.esri.com/en-us/bug/in-arcgis-experience-builder-the-sql-expression-builder-bug-000159713" target="_blank" rel="noopener"&gt;BUG-000159713&lt;/A&gt; , would you be able to provide any screenshots of what you're seeing on your side?&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 19:14:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1610905#M18740</guid>
      <dc:creator>CodyPatterson</dc:creator>
      <dc:date>2025-05-01T19:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in filter widget</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1610907#M18741</link>
      <description>&lt;P&gt;Yup! The actual dataset has some PII so here is a replication with dummy data (DOB loaded in with a timestamp which my actual data doesn't have). Please note that DOB&amp;nbsp;&lt;EM&gt;is&lt;/EM&gt; string in both datasets (dummy and actual).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 19:32:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1610907#M18741</guid>
      <dc:creator>NicoleDaniels802</dc:creator>
      <dc:date>2025-05-01T19:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in filter widget</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1611053#M18751</link>
      <description>&lt;P&gt;I think what you're trying to achieve isn't possible right now, but I would definitely kudo an idea if you find one or create one.&lt;/P&gt;&lt;P&gt;I think the statements you're building (with the exception of the "is" ones, where the user can enter information), aren't working because they're only removing certain data (nulls) from consideration. I bet if you put some null First_Name records in your table, then tried to use your filter (with "is not blank"), you'd get those records filtered out, but those statements aren't actually checking whether your user entered anything.&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 13:07:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1611053#M18751</guid>
      <dc:creator>NicoleJohnson</dc:creator>
      <dc:date>2025-05-02T13:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in filter widget</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1611056#M18752</link>
      <description>&lt;P&gt;Thanks, NicoleJohnson - that's sort of how I was starting to feel. Any idea if this could be achieved with different widgets (Search or Query instead of Filter or List instead of Table, for example)? Or is this a place where playing with Developer Edition would be appropriate? Just trying to identify some potential next steps.&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 13:07:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1611056#M18752</guid>
      <dc:creator>NicoleDaniels802</dc:creator>
      <dc:date>2025-05-02T13:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in filter widget</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1611061#M18753</link>
      <description>&lt;P&gt;I don't have any experience with Developer Edition, but there is a &lt;A href="https://community.esri.com/t5/experience-builder-tips-and-tricks/gh-p/experience-builder-tips-and-tricks" target="_self"&gt;Tips and Tricks group&lt;/A&gt; where you may find more info on that. I also tried the query and list widgets since those also contain filters, and no luck.&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 13:15:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1611061#M18753</guid>
      <dc:creator>NicoleJohnson</dc:creator>
      <dc:date>2025-05-02T13:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in filter widget</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1611084#M18754</link>
      <description>&lt;P&gt;When you created the Filter, did you use Add Clause or Add Clause Set? I think Add Clause Set should work for you.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JeffreyThompson2_0-1746193903281.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/131359i2FD9E2EC39539228/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JeffreyThompson2_0-1746193903281.png" alt="JeffreyThompson2_0-1746193903281.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 13:51:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1611084#M18754</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2025-05-02T13:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: AND operator in filter widget</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1611108#M18756</link>
      <description>&lt;P&gt;I've tried both and no success with either. Clause Set:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="NicoleDaniels802_0-1746194916926.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/131362i6161DA6A2F4E13C3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NicoleDaniels802_0-1746194916926.png" alt="NicoleDaniels802_0-1746194916926.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 14:09:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/and-operator-in-filter-widget/m-p/1611108#M18756</guid>
      <dc:creator>NicoleDaniels802</dc:creator>
      <dc:date>2025-05-02T14:09:03Z</dc:date>
    </item>
  </channel>
</rss>

