07-30-2021
shubham1
Calcite | Level 5
Member since
02-08-2017
- 46 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by shubham1
Subject Views Posted 4372 07-30-2021 01:15 AM 4384 07-30-2021 12:55 AM 2468 10-20-2020 05:27 AM 2502 10-20-2020 04:40 AM 2517 10-20-2020 04:22 AM 2544 10-20-2020 03:44 AM 910 01-14-2020 09:16 AM 924 01-14-2020 09:03 AM 3779 01-13-2020 08:04 AM 749 12-18-2019 06:55 AM -
Activity Feed for shubham1
- Posted Re: Empty text file using SAS on SAS Programming. 07-30-2021 01:15 AM
- Posted Empty text file using SAS on SAS Programming. 07-30-2021 12:55 AM
- Posted Re: Catx function not giving correct results on SAS Programming. 10-20-2020 05:27 AM
- Posted Re: Catx function not giving correct results on SAS Programming. 10-20-2020 04:40 AM
- Posted Re: Catx function not giving correct results on SAS Programming. 10-20-2020 04:22 AM
- Posted Catx function not giving correct results on SAS Programming. 10-20-2020 03:44 AM
- Posted Re: Prompts value not resolving in SAS EG7.1 on SAS Enterprise Guide. 01-14-2020 09:16 AM
- Posted Prompts value not resolving in SAS EG7.1 on SAS Enterprise Guide. 01-14-2020 09:03 AM
- Posted convert macro variable to datetime on SAS Programming. 01-13-2020 08:04 AM
- Posted appending the library on SAS Programming. 12-18-2019 06:55 AM
- Posted Re: Replcaing quotes with spaces on SAS Programming. 12-06-2019 01:52 AM
- Posted Replcaing quotes with spaces on SAS Programming. 12-06-2019 01:37 AM
- Posted Re: Convert macro variable to datetime on SAS Programming. 12-03-2019 06:39 AM
- Posted Re: Convert macro variable to datetime on SAS Programming. 12-03-2019 05:45 AM
- Posted Convert macro variable to datetime on SAS Programming. 12-03-2019 05:17 AM
- Posted Inserting datatime values in sql server on New SAS User. 10-23-2019 05:55 AM
- Posted length and format not coming correct on SAS Programming. 09-19-2019 01:00 PM
- Posted Re: addition of variables on SAS Programming. 08-02-2019 01:52 AM
- Posted addition of variables on SAS Programming. 08-01-2019 04:59 AM
- Posted Re: Compress function on New SAS User. 06-12-2019 05:51 AM
07-30-2021
01:15 AM
We can use data step also .I do not have unix environment.You can provide me the solution
... View more
07-30-2021
12:55 AM
hello I want to create a empty text file using SAS without using data step. How can I do that
... View more
10-20-2020
05:27 AM
Yes because I am using the function like this zz=catx(',',x,z); where x=, and Z='abc'
... View more
10-20-2020
04:40 AM
hello But when I am running same code on SAS Host which I think is using SAS 9.2 there I am getting the , in the result Is this thing works on SAS 9.2 but not on SAS 9.4 ?
... View more
10-20-2020
04:22 AM
hello I agree to you point that It removes leading and trailing spaces.But i have used the delimiter , in below statement zz=catx(',',x,z); Why comma(,) is not coming in the output ?
... View more
10-20-2020
03:44 AM
data new; x=' '; z='abc'; run; data new1; set new; zz=catx(',',x,z); run; I am trying to run this code but when I am opening the dataset new 1 Variable ZZ has value abc .It is not having , why ZZ is not having a value ,abc?
... View more
01-14-2020
09:16 AM
If I select prompt type as timestamp then it does not give me the option to select the values from sql server table.The only option that comes up is to provide the default value only
... View more
01-14-2020
09:03 AM
Hello I am having a SAS EG project on 7.1.In that I have a prompt which is taking the values from one of the column in sql server table .That column is datetime .When user is going to run that EG project he is going to see different values in the drop down of the prompt and he need to select one Prompt type is defined as Date .But when i am running that SAS EG project by selecting one value in that prompt I am getting the value of that prompt as Blank I have tried to resolve the value of prompt by using %put what could be the reason for getting the Blank value . Prompt type does not have datetime option .The reason for blank value might be when we are taking the input in prompt it is datetime but the prompt type is date please guide
... View more
01-13-2020
08:04 AM
I have below macro variable %let x=01JAN2020:00:00:00:447; i want it to convert to datetime25.6; How can i do that ?
... View more
12-18-2019
06:55 AM
hello I have a library called new which has 50 datasets.one of the dataset name is class dataset class has 5 variables and 10 observations Similarly we have other datasets which have some variables and observations Now we have another library called old which also has 50 datasets with same name that we have in library new I want to to append both the library datasets since they have same dataset name and variables once way to acheive is write proc append like this for all the daatsest proc append base=new.class data=old.class; run; But what we need to do when we have 200 libraries and each library contain 10 to 15 datasets what is the code that I can write other than proc append to acheive this ?
... View more
12-06-2019
01:52 AM
not really what my aim is that I want to extract each word and then apply scan function for example in this case %let x='a''b' once i get the value as 'a' 'b' the i can easily apply scan function and extact 'a' and 'b' separately
... View more
12-06-2019
01:37 AM
Hello I have a macro varible whose value can be like this %let x='a''b'; %letx='ab''bc'; %letx='a''b''c'; what I want is have spaces between words my output should be 1st one ='a' 'b' 2nd one='ab' 'bc' 3rd one ='a' 'b' 'c' how can i achieve this
... View more
12-03-2019
06:39 AM
there was something wrong I did at my end sorry for that your solution is working
... View more
12-03-2019
05:45 AM
I think output is wrong it is not coming as 2019-10-31 00:00:00.447000 .I want value to be numeric as 2019-10-31 00:00:00.447000
... View more
12-03-2019
05:17 AM
I have below macro variable %let x=2019-10-31 00:00:00.447000; This macro variable is having a value as character .i want it to convert to numeric 26 How can i do that ?
... View more