06-13-2018
Sheelapolakonda
Fluorite | Level 6
Member since
02-05-2015
- 6 Posts
- 3 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by Sheelapolakonda
Subject Views Posted 19519 06-21-2017 03:21 AM 1557 06-21-2017 03:14 AM 1570 06-21-2017 01:42 AM 1578 06-21-2017 01:19 AM 1092 07-01-2016 04:27 AM 1275 04-16-2016 10:51 PM -
Activity Feed for Sheelapolakonda
- Posted DO WHILE vs. DO UNTIL on SAS Programming. 06-21-2017 03:21 AM
- Posted Re: REPORT and LISTING on SAS Programming. 06-21-2017 03:14 AM
- Liked Re: REPORT and LISTING for Jagadishkatam. 06-21-2017 03:12 AM
- Posted Re: REPORT and LISTING on SAS Programming. 06-21-2017 01:42 AM
- Posted REPORT and LISTING on SAS Programming. 06-21-2017 01:19 AM
- Liked Re: Permanent libraries for Kurt_Bremser. 07-01-2016 09:57 AM
- Liked Re: Permanent libraries for JohnHoughton. 07-01-2016 09:57 AM
- Posted Permanent libraries on SAS Programming. 07-01-2016 04:27 AM
- Posted Calculation of Minimum pulse on SAS Programming. 04-16-2016 10:51 PM
-
Posts I Liked
Subject Likes Author Latest Post 2 1 1
06-21-2017
02:59 PM
Tom has covered the basics; this page has several examples: http://www.sascommunity.org/wiki/Do_which_loop_until_or_while
... View more
07-01-2016
05:18 AM
1 Like
http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000247654.htm Copying an Entire Library To copy an entire SAS library, simply specify an input data library and an output data library following the COPY statement. For example, the following statements copy all the SAS files in the SOURCE data library into the DEST data library: proc datasets library=source;
copy out=dest;
run;
... View more
04-16-2016
11:27 PM
If your looking for a minimum value in a list:
proc means/summary/univariate
proc sql
data step manual calc
... View more