02-29-2024
shivagujjaru
Calcite | Level 5
Member since
04-21-2019
- 12 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by shivagujjaru
Subject Views Posted 1198 02-24-2024 02:16 AM 612 02-24-2024 01:00 AM 814 10-15-2019 02:44 AM 1185 07-10-2019 01:45 PM 1036 05-14-2019 09:52 PM 1075 05-14-2019 06:07 AM 646 05-14-2019 02:01 AM 981 05-08-2019 09:27 AM 1020 05-08-2019 01:46 AM 1518 04-21-2019 10:13 AM -
Activity Feed for shivagujjaru
- Posted Re: Picking unique visit among multiple based on specific condition on SAS Programming. 02-24-2024 02:16 AM
- Posted Web scraping using sas on SAS Programming. 02-24-2024 01:00 AM
- Posted Password protected xlsx file in SAS on SAS Programming. 10-15-2019 02:44 AM
- Tagged Password protected xlsx file in SAS on SAS Programming. 10-15-2019 02:44 AM
- Posted I run SAS codes using IBM TWS which are getting aborted with RC 127 on SAS Programming. 07-10-2019 01:45 PM
- Posted Re: Insertbuff on SAS Programming. 05-14-2019 09:52 PM
- Posted Insertbuff on SAS Programming. 05-14-2019 06:07 AM
- Posted Parallel processing on SAS Programming. 05-14-2019 02:01 AM
- Posted Re: Give a best solution on SAS Programming. 05-08-2019 09:27 AM
- Posted Give a best solution on SAS Programming. 05-08-2019 01:46 AM
- Posted Re: Delete temporary variable on SAS Programming. 04-21-2019 10:13 AM
- Posted Re: Delete temporary variable on SAS Programming. 04-21-2019 07:04 AM
- Posted Delete temporary variable on SAS Programming. 04-21-2019 06:26 AM
02-24-2024
02:16 AM
proc sort data=have; by usubjid AVISITN vistyp; run; data want; set have; by usubjid AVISITN; if first.usubjid then flag = "" if first.AVISITN then flag = ""; if vistyp = 1 and first.AVISITN then flag = "Yes"; else if vistyp ne 1 and first.AVISITN then flag = "Yes"; else if vistyp = 1 and flag = "" then flag = "Yes"; if last.AVISITN then output; drop visdup; run; proc print data=want; run; Hope this should work This code first sorts the have dataset by usubjid, AVISITN, and vistyp. Then, it processes the data by groups of usubjid and AVISITN. Within each group, it sets the flag variable based on the specified conditions. Finally, it keeps only the first record per visit (AVISITN) and drops the unnecessary Try and let me know if it doesn't work
... View more
02-24-2024
01:00 AM
Hi Everyone, Is it possible in sas to do web scraping accurately, Go to a website and enter the zip code as shown in picture 1 and extract the city and other city information from picture 2 and store into a dataset. And again go to "edit and search again" in picture 2 and search for new zip code ? Can I do it for more than 1000+ zips ?
... View more
10-15-2019
02:44 AM
hello guys can someone tell me How to create Password protected xlsx file using Unix sas or Using x or systask command
... View more
07-10-2019
01:45 PM
Hi I run SAS codes using IBM TWS which are getting aborted due to RC 127. When I debug . While job get submit it creates host.servername.com , job.id ,job.lock, code.sas Files under sasutil location. In general they get create at /sasutil/login ID/jobnamefolder Here few jobs getting aborted right after creating this folder but not creating the files mentioned above As per me these files will be created by SAS LSF . Only few job are getting aborted due this issue , where all our job use the same location and scripts . I have checked the permission, assigned the full directory but not able to find the issue
... View more
05-14-2019
06:07 AM
What is the max insertbuff I can submit In general I use insertbuff=10000
... View more
05-14-2019
02:01 AM
Hi guys, I want to work on parallel processing like I have a insert step in two tables I pick data from 1 tables , So I want to use parallel process to load data in two tables at once
... View more
05-08-2019
01:46 AM
Id. Dateofjoining 101 21Aug2018 102 22Aug2018 103 17Aug2018 104 25Aug2018 As per series 103 should be 23 or 24 Aug . How to pick the odd one out or remove 103 row.
... View more
04-21-2019
10:13 AM
I have applied some loop inside the macro . It's like when file is not exits it's still using the local macro variable while checking a condition. Thanks , now it's working
... View more
04-21-2019
07:04 AM
Adding a point Symdel delete global macro variable . But I have created local macro variable. Thanks alot guys
... View more
04-21-2019
06:26 AM
Hi guys, I need to delete a temporary variable. Created by using select distinct variable name into: variable1. How can I delete this variable1 from work lib .
... View more