<?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: SAS Studio how to go to a specific observation during review? in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/905349#M11162</link>
    <description>&lt;P&gt;Beginning with SAS Studio 5.2, we provide the ability to view up to 1000 rows per page. This option is not available with SAS Studio 3.x versions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Providing the ability to go directly to a row within a table is a feature request that development has on their to-do list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently, you would need to use data step logic to go to a specific row in a table.&amp;nbsp; The data step below creates a new data set that begins with the 6th observation in the table.&lt;/P&gt;
&lt;P&gt;data new;&lt;BR /&gt;set sashelp.class;&lt;BR /&gt;if _n_&amp;gt; 5;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Nov 2023 13:54:15 GMT</pubDate>
    <dc:creator>LeliaM</dc:creator>
    <dc:date>2023-11-30T13:54:15Z</dc:date>
    <item>
      <title>SAS Studio how to go to a specific observation during review?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/905306#M11161</link>
      <description>&lt;P&gt;When using SAS GRID / Cloud (both SAS EG 9.4), we used to have the functionality of Ctrl+G to open 'Go To Cell' then we're able to enter the row number we want to go to and it just takes users to that specific observation.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But in SAS Studio, this functionality is gone. To make matters worse, the maximum number of observations you can see on a single page is only 500 observations.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm having real difficulty using SAS Studio because of this - is this functionality hidden somewhere that I am not aware of?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or is the only solution to set the dataset to a new dataset and add a variable to display _n_ then use it to filter?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 05:54:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/905306#M11161</guid>
      <dc:creator>SherryMichan</dc:creator>
      <dc:date>2023-11-30T05:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio how to go to a specific observation during review?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/905349#M11162</link>
      <description>&lt;P&gt;Beginning with SAS Studio 5.2, we provide the ability to view up to 1000 rows per page. This option is not available with SAS Studio 3.x versions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Providing the ability to go directly to a row within a table is a feature request that development has on their to-do list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently, you would need to use data step logic to go to a specific row in a table.&amp;nbsp; The data step below creates a new data set that begins with the 6th observation in the table.&lt;/P&gt;
&lt;P&gt;data new;&lt;BR /&gt;set sashelp.class;&lt;BR /&gt;if _n_&amp;gt; 5;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 13:54:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/905349#M11162</guid>
      <dc:creator>LeliaM</dc:creator>
      <dc:date>2023-11-30T13:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio how to go to a specific observation during review?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/905371#M11163</link>
      <description>&lt;P&gt;You can always isolate just one observation (x) and print it with the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=sashelp.class(firstobs=x obs=x);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 15:06:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/905371#M11163</guid>
      <dc:creator>antonbcristina</dc:creator>
      <dc:date>2023-11-30T15:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio how to go to a specific observation during review?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/905372#M11164</link>
      <description>&lt;P&gt;"Specific observation" can have more than one meaning. You seem to imply that you want a specific observation number. If that is the case do you want any more of the data set or just that observation?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another data step approach is to use the FIRSTOBS dataset option. The following shows the data set starting with the 5th observation in the source set.&lt;/P&gt;
&lt;PRE&gt;data temp;
   set sashelp.class (firstobs=5);
run;&lt;/PRE&gt;
&lt;P&gt;If you want &lt;STRONG&gt;only &lt;/STRONG&gt;that obs couple it with the OBS= option:&lt;/P&gt;
&lt;PRE&gt;data temp;
   set sashelp.class (firstobs=5 obs=5);
run;&lt;/PRE&gt;
&lt;P&gt;Another meaning of "specific observation" is observations with specific values of a variable, which I find more useful than the observation number approach because data sets get sorted, have observations dropped or added and the "number" changes. A Where statement can find all the observations with combinations of specific values.&lt;/P&gt;
&lt;PRE&gt;data temp;
   set sashelp.class;
   where age=12;
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 Nov 2023 15:09:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/905372#M11164</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-11-30T15:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio how to go to a specific observation during review?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/905924#M11168</link>
      <description>&lt;P&gt;Thank you, hopefully development team will be implementing this important feature back in.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This greatly helps in proc compare where the discrepancy lies in 10000+ row but you can't directly go to that row to see the issue in detail unless you go through datastep filters.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2023 00:32:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/905924#M11168</guid>
      <dc:creator>SherryMichan</dc:creator>
      <dc:date>2023-12-04T00:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio how to go to a specific observation during review?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/912998#M11207</link>
      <description>&lt;P&gt;Correct!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to go view nth record directly. Currently I have to keep scrolling till that record comes but can I go to a particular number of (nth) record directly? It will be a great feature if it could be implemented.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;- Dr. Abhijeet Safai&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2024 15:41:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-how-to-go-to-a-specific-observation-during-review/m-p/912998#M11207</guid>
      <dc:creator>DrAbhijeetSafai</dc:creator>
      <dc:date>2024-01-25T15:41:27Z</dc:date>
    </item>
  </channel>
</rss>

