09-02-2021
serges007
Fluorite | Level 6
Member since
08-20-2021
- 6 Posts
- 4 Likes Given
- 1 Solutions
- 0 Likes Received
-
Latest posts by serges007
Subject Views Posted 1571 09-01-2021 06:03 AM 5339 08-22-2021 02:50 AM 5346 08-22-2021 02:23 AM 5394 08-20-2021 04:55 PM 5447 08-20-2021 08:33 AM 5509 08-20-2021 05:20 AM -
Activity Feed for serges007
- Liked Re: Problem understanding date and dollar formats for ballardw. 09-02-2021 03:53 PM
- Liked Re: Problem understanding date and dollar formats for Tom. 09-02-2021 03:49 PM
- Liked Re: Problem understanding date and dollar formats for yabwon. 09-02-2021 03:43 PM
- Posted Problem understanding date and dollar formats on New SAS User. 09-01-2021 06:03 AM
- Posted Re: problem to access data in my SAS training exam on SAS Programming. 08-22-2021 02:50 AM
- Posted Re: problem to access data in my SAS training exam on SAS Programming. 08-22-2021 02:23 AM
- Liked Re: problem to access data in my SAS training exam for andreas_lds. 08-22-2021 02:11 AM
- Posted Re: problem to access data in my SAS training exam on SAS Programming. 08-20-2021 04:55 PM
- Posted Re: problem to access data in my SAS training exam on SAS Programming. 08-20-2021 08:33 AM
- Posted problem to access data in my SAS training exam on SAS Programming. 08-20-2021 05:20 AM
-
Posts I Liked
Subject Likes Author Latest Post 3 1 1 1
09-01-2021
06:03 AM
Hello Team, I have serious problems understanding the date and dollar formats. In fact, in certain exercises, dollar7 or a dollar12 are sometimes used. Can you better explain to me when should I use dollar7, dollar8 dollar9, dollar10, dollar11, or dollar12 here is an example I got I used dollar12. but in the correction one uses dollar7. and I can't understand the reasons they gave. It's the same problem with the date format using date7, date8 date 9, and so on. data results.output13;
set cert.input13;
Chdate=put(date1,date9.);
num1=input(Charnum,dollar7.);
run; Thank's for your comprehension
... View more
08-22-2021
02:50 AM
Thanks Cynthia, you were absolutely right, I am in the wrong working environment, I should be in SAS virtual Labs, for that it was enough to click on create user and follow the instructions. Sorry everyone for the inconvenience
... View more
08-22-2021
02:23 AM
Hi Cynthia , the instructions are there and I can't see anywhere where it is indicate the link to download the input data.
... View more
08-20-2021
04:55 PM
hi ballard, thanks for your observation, I pointed the libraries in different directories, the code is executed but there is no data in the output table and there is an error generated: ERROR: File CERT.INPUT04.DATA does not exist.
... View more
08-20-2021
08:33 AM
Salut, je changed but I have the same error data results.output04; set cert.input04; length var3 $ 5; var1=ceil(var1); var2=ceil(var2); var3=var1*var2; var20=sum(of var12-var19); run; ERROR: File CERT.INPUT04.DATA does not exist. ERROR: Library RESULTS does not exist.
... View more
08-20-2021
05:20 AM
Hi, I am starting my SAS certification training session and I have a small problem with accessing the data. I don't know but I have an error when I submit my first exercise: ERROR: File RESULTS.OUTPUT04.DATA does not exist. ERROR: Library CERT does not exist. However I have created the folders in the files(home). I have also created the requested libraries: %let path=/home/u49976893/cert/input;
libname cert "&path";
%let path=/home/u49976893/cert/output;
libname results "&path"; Here is my sub-code: data cert.input04;
set results.output04;
length var3 $ 5;
var1=ceil(var1);
var2=ceil(var2);
var3=var1*var2;
var20=sum(of var12-var19);
run; I make you here a screen capture of my workspace moreover I make you a capture of the statements of the exercises. but for my part it is specified null part where to import the data of the exam
... View more