<?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: &amp;quot;Too many values to display&amp;quot; - cannot set up filter in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/quot-too-many-values-to-display-quot-cannot-set-up/m-p/1363867#M56505</link>
    <description>&lt;P&gt;A couple ideas:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You could add a new integer field named something like "view_display_01" and set the values for those 71 records to "1".&amp;nbsp; Set your view's filter to 'view_display_001 = 1'.&amp;nbsp; For subsequent views, you could use _02, _03, etc. suffices.&amp;nbsp; This doesn't scale that well though, I probably wouldn't do this for more than a dozen or so views.&lt;/LI&gt;&lt;LI&gt;If you're comfortable using the Administrative REST API, you can update your view definition there as a SQL query - these filters are stored as where clauses in the view definitions, under a property named "definitionQuery".&amp;nbsp; You could initially set your filter to something very basic when creating the view, e.g. 'OBJECTID = 1', then set it to the proper clause via the API.&amp;nbsp; I'm not sure what the maximum length of these clauses is but I suspect a SQL IN clause with 71 IDs should be fine.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;In either case you'll want to create an attribute index due to the number of features involved.&lt;/P&gt;</description>
    <pubDate>Fri, 22 Dec 2023 03:27:41 GMT</pubDate>
    <dc:creator>MobiusSnake</dc:creator>
    <dc:date>2023-12-22T03:27:41Z</dc:date>
    <item>
      <title>"Too many values to display" - cannot set up filter</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/quot-too-many-values-to-display-quot-cannot-set-up/m-p/1363833#M56501</link>
      <description>&lt;P&gt;I have a hosted feature layer that consists of river lines from the National Hydrography Dataset for a certain area. There are&amp;nbsp;287,993 line features.&lt;/P&gt;&lt;P&gt;I want to create a View that narrows this down to just a couple of rivers of interest.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I set up the filter, I am not able to search some of the values. Some of them work and others don't; it just reports "Too many values to display"-- even though I have typed the exact code that I want to include.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It doesn't let me just enter something that I typed- it seems that I must select it from the drop-down list.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2023 23:23:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/quot-too-many-values-to-display-quot-cannot-set-up/m-p/1363833#M56501</guid>
      <dc:creator>CRose</dc:creator>
      <dc:date>2023-12-21T23:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: "Too many values to display" - cannot set up filter</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/quot-too-many-values-to-display-quot-cannot-set-up/m-p/1363835#M56502</link>
      <description>&lt;P&gt;Also, when I am updating the View, I have to go back to Step 1 (Choose Layers) Tab before the Step 2 tab gives me the "+ Update" button.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2023 23:26:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/quot-too-many-values-to-display-quot-cannot-set-up/m-p/1363835#M56502</guid>
      <dc:creator>CRose</dc:creator>
      <dc:date>2023-12-21T23:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: "Too many values to display" - cannot set up filter</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/quot-too-many-values-to-display-quot-cannot-set-up/m-p/1363853#M56504</link>
      <description>&lt;P&gt;I would really prefer to use a SQL Query instead of having to do one at a time. I have a river section defined by reachcode instead gnis_id, and there are 71 of those. Ridiculous to have to enter each as a separate filter.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2023 02:27:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/quot-too-many-values-to-display-quot-cannot-set-up/m-p/1363853#M56504</guid>
      <dc:creator>CRose</dc:creator>
      <dc:date>2023-12-22T02:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: "Too many values to display" - cannot set up filter</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/quot-too-many-values-to-display-quot-cannot-set-up/m-p/1363867#M56505</link>
      <description>&lt;P&gt;A couple ideas:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You could add a new integer field named something like "view_display_01" and set the values for those 71 records to "1".&amp;nbsp; Set your view's filter to 'view_display_001 = 1'.&amp;nbsp; For subsequent views, you could use _02, _03, etc. suffices.&amp;nbsp; This doesn't scale that well though, I probably wouldn't do this for more than a dozen or so views.&lt;/LI&gt;&lt;LI&gt;If you're comfortable using the Administrative REST API, you can update your view definition there as a SQL query - these filters are stored as where clauses in the view definitions, under a property named "definitionQuery".&amp;nbsp; You could initially set your filter to something very basic when creating the view, e.g. 'OBJECTID = 1', then set it to the proper clause via the API.&amp;nbsp; I'm not sure what the maximum length of these clauses is but I suspect a SQL IN clause with 71 IDs should be fine.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;In either case you'll want to create an attribute index due to the number of features involved.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2023 03:27:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/quot-too-many-values-to-display-quot-cannot-set-up/m-p/1363867#M56505</guid>
      <dc:creator>MobiusSnake</dc:creator>
      <dc:date>2023-12-22T03:27:41Z</dc:date>
    </item>
  </channel>
</rss>

