<?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 How to filter data output based on text/number entry in Dashboard? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-filter-data-output-based-on-text-number-entry-in/m-p/608600#M81003</link>
    <description>&lt;P&gt;Wondering how I could update the timeline of graph based on user input on dashboard. For example below, inputted value would shorten the timeline of graph to begin at 1/1/23. I am open to alternative suggesting if anyone has another idea to achieve similar results. I am at a bit of a loss. Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lcpaul41_1-1678123603815.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50753i8C469C5AAFB03834/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lcpaul41_1-1678123603815.png" alt="lcpaul41_1-1678123603815.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lcpaul41_0-1678123459564.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50752i17B1A99FB4BFC219/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lcpaul41_0-1678123459564.png" alt="lcpaul41_0-1678123459564.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Jun 2023 16:31:07 GMT</pubDate>
    <dc:creator>lcpaul41</dc:creator>
    <dc:date>2023-06-08T16:31:07Z</dc:date>
    <item>
      <title>How to filter data output based on text/number entry in Dashboard?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-data-output-based-on-text-number-entry-in/m-p/608600#M81003</link>
      <description>&lt;P&gt;Wondering how I could update the timeline of graph based on user input on dashboard. For example below, inputted value would shorten the timeline of graph to begin at 1/1/23. I am open to alternative suggesting if anyone has another idea to achieve similar results. I am at a bit of a loss. Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lcpaul41_1-1678123603815.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50753i8C469C5AAFB03834/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lcpaul41_1-1678123603815.png" alt="lcpaul41_1-1678123603815.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lcpaul41_0-1678123459564.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50752i17B1A99FB4BFC219/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lcpaul41_0-1678123459564.png" alt="lcpaul41_0-1678123459564.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:31:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-data-output-based-on-text-number-entry-in/m-p/608600#M81003</guid>
      <dc:creator>lcpaul41</dc:creator>
      <dc:date>2023-06-08T16:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter data output based on text/number entry in Dashboard?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-data-output-based-on-text-number-entry-in/m-p/609346#M81046</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using a Local Data Filter on the time variable would give you this functionality "out of the box". To do this, right-click on the red triangle menu of the graph itself, select Local Data Filter, and add the time variable to the filter. By dragging the slider bars, or typing into the text edit boxes below the sliders, you can set the display range of interest. As an example of this, run the code below to produce the output in the screenshot below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
nr = 50;
dt = astable (J(nr, 1, randominteger(3e9, 3.5e9)) || J(nr, 1, randomuniform(0,20)),  &amp;lt;&amp;lt;column names({"Date", "Value"}));

dt:date &amp;lt;&amp;lt; Input Format( "ddMonyyyy h:m:s", 0 ) &amp;lt;&amp;lt; Format( "ddMonyyyy h:m:s", 22, 0 );

dt &amp;lt;&amp;lt; Graph Builder(
	Variables( X( :Date ), Y( :Value ) ),
	Elements( Points( X, Y, Legend( 3 ) ) ),
	Show Control Panel (0),
	Local Data Filter(
		Width( 329 ),
		Show Histograms and Bars( 0 ),
		Add Filter(
			columns( :Date ),
			Where( :Date &amp;gt;= 3097580000 &amp;amp; :Date &amp;lt;= 3418250000 ),
			Display( :Date, Height( 20 ) )
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="brady_brady_0-1678243260470.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50829i385443CB2EF9575F/image-size/large?v=v2&amp;amp;px=999" role="button" title="brady_brady_0-1678243260470.png" alt="brady_brady_0-1678243260470.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Brady&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 02:42:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-data-output-based-on-text-number-entry-in/m-p/609346#M81046</guid>
      <dc:creator>brady_brady</dc:creator>
      <dc:date>2023-03-08T02:42:24Z</dc:date>
    </item>
  </channel>
</rss>

