<?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 to show last n items/values? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/888661#M105094</link>
    <description>&lt;P&gt;Let's use the Semiconductor Capability sample data table for context.&lt;/P&gt;
&lt;P&gt;Column lot_id has 13 levels. &lt;BR /&gt;Say I want to IMR control chart the last lot only or only the last 5 lots in the data table. Is there an elegant way to do this kind of last n filtering other than manually scrolling through the list of lot_id and manually picking the last 5 lots?&lt;/P&gt;
&lt;P&gt;Alternatively, I have years of process sensor data in my data table. I only want to plot the last six months worth.&lt;/P&gt;</description>
    <pubDate>Wed, 23 Jul 2025 05:12:48 GMT</pubDate>
    <dc:creator>markschahl</dc:creator>
    <dc:date>2025-07-23T05:12:48Z</dc:date>
    <item>
      <title>How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/888661#M105094</link>
      <description>&lt;P&gt;Let's use the Semiconductor Capability sample data table for context.&lt;/P&gt;
&lt;P&gt;Column lot_id has 13 levels. &lt;BR /&gt;Say I want to IMR control chart the last lot only or only the last 5 lots in the data table. Is there an elegant way to do this kind of last n filtering other than manually scrolling through the list of lot_id and manually picking the last 5 lots?&lt;/P&gt;
&lt;P&gt;Alternatively, I have years of process sensor data in my data table. I only want to plot the last six months worth.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 05:12:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/888661#M105094</guid>
      <dc:creator>markschahl</dc:creator>
      <dc:date>2025-07-23T05:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/888673#M105095</link>
      <description>&lt;P&gt;For the second one you can use data filter&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1753248609397.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78717i168CEAA61418C290/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1753248609397.png" alt="jthi_1-1753248609397.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You might want to create YEAR-MONTH column to make selection slightly easier&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For the first one, is the order only based on row order of the data table? For semiconductor capability they are in alphabetical order, so you could use data filter.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1753248546327.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78716iD70E36D4344ACFAE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1753248546327.png" alt="jthi_0-1753248546327.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 05:30:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/888673#M105095</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-07-23T05:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/888697#M105101</link>
      <description>&lt;P&gt;I would use these to create categorical column to label latest xx days, months, year and use it in the data filter.&amp;nbsp;&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;If( :Date &amp;gt;= Date DMY( 1, Month( Col Max( :Date ) ), Year( Col Max( :Date ) ) - 1 ),
	"Yes",
	"No"
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If( Col Max( :Date ) - :Date &amp;lt;= In Days( 30 ),
	"latest 30 days"
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You may modify this for the latest 6 months&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If(
	:Date &amp;gt;= Date DMY( 1, Month( Col Max( :Date ) ), Year( Col Max( :Date ) ) )
	-In Years( 0.5 ),
	"Yes",
	"No"
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For Labeling the latest X label&lt;/P&gt;
&lt;P&gt;I would use this as example of latest 2 lot ID/cycle.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Reassign lot or Cycle by number&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If( Row() == 1,
	1,
	If( :Start Date == Lag( :Start Date ),
		Lag( :cycle ),
		Lag( :cycle ) + 1
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If( Row() == 1,
	1,
	If( :lot ID == Lag( :lot ID ),
		Lag( :cycle 2 ),
		Lag( :cycle 2 ) + 1
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then, create this formula to label the latest xx ID or Cycle (2 in this example)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If( Col Max( :cycle ) - :cycle &amp;lt; 2,
	"latest 2 cycles"
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Alternatively, you can modify this script to run on your data table.&lt;/P&gt;
&lt;P&gt;However, you need to rerun this script every time the data is updated. Thus, I prefer the one above.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;last_no = 2;

// Define your column names
timestampCol = "Start Date"; // Replace with your actual timestamp column name
categoryCol = "lot ID";     // Replace with your actual category column name

// Reference the current data table
dt = Current Data Table();

// Create a summary table with the latest timestamp per category
dtSummary = dt &amp;lt;&amp;lt; Summary(
    Group( column(categoryCol) ),
    Max( column(timestampCol) ),
    Link to original data table(0),
    Output Table Name("LatestPerCategory")
);

// Sort the summary table by latest timestamp descending
dtSummary &amp;lt;&amp;lt; Sort(
    By( column("Max(" || timestampCol || ")") ),
    Order(Descending),
    Replace Table(1)
);

// Get the top 2 categories
latestCategories = {};
For( i = 1, i &amp;lt;= last_no, i++,
    Insert Into( latestCategories, dtSummary:lot ID[i] )
);

// Add a new column to flag the latest 5 categories
dt &amp;lt;&amp;lt; New Column("Is Latest " ||char(last_no),
    Character,
    Formula( If( Contains( latestCategories, :lot ID ), "Yes", "No" ) )
);

// Optional: Close the summary table
Close( dtSummary, NoSave );
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is how my test data look like&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nita_Natchanok_0-1753259894803.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78726iF35EB3E81B709B15/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nita_Natchanok_0-1753259894803.png" alt="Nita_Natchanok_0-1753259894803.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 08:38:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/888697#M105101</guid>
      <dc:creator>Nita_Natchanok</dc:creator>
      <dc:date>2025-07-23T08:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889056#M105116</link>
      <description>&lt;P&gt;For "last 5 lots" you can use Rank Reverse:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1753300872001.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78780iED9B39A772BDD4E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1753300872001.png" alt="hogi_0-1753300872001.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;maybe even last 5 lots per "Site" - like in the screenshot?&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="hogi_1-1753300953334.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78781iB0EC3D519AA96619/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1753300953334.png" alt="hogi_1-1753300953334.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;a bit surprising: the x axis doesn't adjust to the Data Filter settings.&lt;BR /&gt;-&amp;gt; a lot of white space&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 12:46:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889056#M105116</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-07-24T12:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889206#M105125</link>
      <description>&lt;P&gt;I used the Last.6.Months False/True formula to help create a subset. Used subset instead of filter so the subgroups in the control chart would not include the Last.6.Months == 0 cases.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="20250723 JMP Community Post.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78816iD16BF9B2F3D2AE12/image-size/large?v=v2&amp;amp;px=999" role="button" title="20250723 JMP Community Post.png" alt="20250723 JMP Community Post.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Current Data Table();
Last.6.Months.Data = dt &amp;lt;&amp;lt; Subset( Filtered Rows(:Running? == 1 &amp;amp; :Last.6.Months == 1));
Last.6.Months.Data &amp;lt;&amp;lt; Set Name("Last.6.Months.Data");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Jul 2025 10:12:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889206#M105125</guid>
      <dc:creator>markschahl</dc:creator>
      <dc:date>2025-07-24T10:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889276#M105136</link>
      <description>&lt;P&gt;Jarmo:&lt;BR /&gt;Thanks! I did not know about the Rank Reverse Order function. I will try it out next week.&lt;/P&gt;
&lt;P&gt;Yes, the x-axis problem is why I used subset instead of Data Filter.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 23:28:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889276#M105136</guid>
      <dc:creator>markschahl</dc:creator>
      <dc:date>2025-07-24T23:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889302#M105140</link>
      <description>&lt;P&gt;actually , you are right -&amp;nbsp; the necessary function is not &lt;U&gt;yet&lt;/U&gt;&amp;nbsp;available.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's learn from my mistake:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Col Rank counts based on rows - not based on lots lots.&lt;/P&gt;
&lt;P&gt;So every wafer will get its own number. -&amp;gt; not what you want.&lt;/P&gt;
&lt;P&gt;Sorry.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But there is a nice outlook:&lt;BR /&gt;With version 19, JMP will get the new feature : )&lt;BR /&gt;&lt;LI-MESSAGE title="Add dense ranking to Ranking Tie and Col Rank functions" uid="590079" url="https://community.jmp.com/t5/JMP-Wish-List/Add-dense-ranking-to-Ranking-Tie-and-Col-Rank-functions/m-p/590079#U590079" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1753419736058.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78863iBE1A8A24FA9809AE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1753419736058.png" alt="hogi_1-1753419736058.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;At the moment, there is no one-click option to calculate the Reverse Score Unique.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;As a workaround:&lt;BR /&gt;There will be another new functionality in JMP19:&amp;nbsp;&lt;LI-MESSAGE title="Col N Categories (💚)" uid="592610" url="https://community.jmp.com/t5/JMP-Wish-List/Col-N-Categories/m-p/592610#U592610" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This allows us to calculate the&amp;nbsp; &lt;FONT face="courier new,courier"&gt;Reverse Unique Score&lt;/FONT&gt; via:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;(Col N Unique( :lot_id ) - Col N Unique( :lot_id )) + 1&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;, nice collaboration : )&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 07:35:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889302#M105140</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-07-25T07:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889320#M105141</link>
      <description>&lt;P&gt;As an alternative, one can add a&amp;nbsp;&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Reverse Score Unique&amp;nbsp;&lt;/FONT&gt;manually:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1753421553714.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78868i8CF1A24E171A0701/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1753421553714.png" alt="hogi_0-1753421553714.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;via a custom function&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Add Custom Functions(
	New Custom Function(
		"COL",
		"Score Unique_reverse_addExpr",
		Function( {value},
			 Col N Unique( value) - Col Score (value) +1  
		),
		&amp;lt;&amp;lt;Formula Category( "Statistical" ),
		&amp;lt;&amp;lt;Transform Category( 1 ),
		&amp;lt;&amp;lt;Description( "Reverse Score Unique - e.g. for : the last 5 lots" ),
		&amp;lt;&amp;lt;Example( JSL Quote( New Column( "my reverse score", Formula( COL:Score Unique_reverse_addExpr( Expr(:height) ) ) );) )				
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;with the following restrictions:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;the grouping options are missing&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;Expr()&lt;/FONT&gt;&amp;nbsp;has to be added manually in Formula Editor (to protect the argument from being evaluated too early):&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/Discussions/Fast-Way-to-calculate-quot-nested-quot-Col-aggregations-like-MAD/m-p/888083/highlight/true#M105027" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/Discussions/Fast-Way-to-calculate-quot-nested-quot-Col-aggregations-like-MAD/m-p/888083/highlight/true#M105027&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1753421633660.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78870i815199AB7B6D781F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1753421633660.png" alt="hogi_1-1753421633660.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 05:41:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889320#M105141</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-07-25T05:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889421#M105152</link>
      <description>&lt;P&gt;We do have quite nice "select last" and so on with configure levels but too bad, these are not accessible for (nominal/ordinal) data filters&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1753454048245.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78902i945D3D918BAAE160/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1753454048245.png" alt="jthi_0-1753454048245.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;There are plenty of improvements which data filters could benefit from, this could be one more, so maybe a wish list item for this type of selection?&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 14:36:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889421#M105152</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-07-25T14:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889423#M105153</link>
      <description>&lt;P&gt;&lt;A class="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa" href="https://community.jmp.com/t5/JMP-Wish-List/Add-dense-ranking-to-Ranking-Tie-and-Col-Rank-functions/m-p/590079#U590079" target="_blank"&gt;Add dense ranking to Ranking Tie and Col Rank functions&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;is not yet marked as "Yes, stay tuned".&lt;BR /&gt;With some luck they can squeeze in the "reverse" version of dense ranking for JMP19 in September ; )&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 14:38:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/889423#M105153</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-07-25T14:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/892508#M105352</link>
      <description>&lt;P&gt;Good news! Starting in JMP 19.0, there is a new feature in Control Chart Builder called, "&lt;EM&gt;Set Last N Subgroups&lt;/EM&gt;", which will adjust the X-axis to always show the most recent N subgroups, regardless of any updates to the data or chart.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 18:26:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/892508#M105352</guid>
      <dc:creator>AnnieDudley</dc:creator>
      <dc:date>2025-08-05T18:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter to show last n items/values?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/892971#M105393</link>
      <description>&lt;P&gt;Thanks for the confirmation, Annie!&lt;/P&gt;
&lt;P&gt;I attended your talk at Discovery24, and I thought you mentioned this as an improvement. Looking forward to it.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 03:53:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-filter-to-show-last-n-items-values/m-p/892971#M105393</guid>
      <dc:creator>markschahl</dc:creator>
      <dc:date>2025-08-07T03:53:01Z</dc:date>
    </item>
  </channel>
</rss>

