Hi Friends,
Am Priya,new to your forum.
am looking for Interview questions on SAS Platform
Administration.
I searched everywhere but I couldn't find them,please can
anyone help me with complete interview questions normally
everyone will face in the interviews on SAS Administration.
am really facing problems in the interviews,am not able to
answer any of their questions.
I would really appreciate all your help if you can email the
complete Interview Questions to priyafeb84@gmail.com
Kindly awaiting for your reply with eager
Hi Friends,
My name is Priya,am new to this Forum.
am looking for SAS Platform Administration Interview
Questions.I searched every where but I couldn't find any
where.please can anyone help me with the FAQ's.
It would be a great favor to me if you can email the
Interview Questions to priyafeb84@gmail.com
i have one dataset
data l;
input name: $ 25;
cards;
manoj is a good boy to krishna
krishna is a god boy to malli
malli is good boy to ramana
ques: here i want "manoj" observations nubers
Hi
Jeevan/Akshara
I have tried to contact SASI Vats for latest Advanced SAS
Programming Certification Dumps (A00-212) but have not got
any response. I would highly and gratefully appreciate your
assistance in this regard. If you guys have access to this,
would you be kind enough to forward it to me ? I would abide
by all the terms you have for this. Please, note my email
id: upretigopi@yahoo.com
Preti Sharma
if you have 365 no of data set and each one having different
variable from each other. how will you read by creating
macros and create a single data set.
create macros---you have 365 number of data and you need to
merge it throw the macros,,,,,,
data file1;
input a @@;
cards;
1 2 3 4
;
run;
data file2;
input a @@;
cards;
5 6 7 8
;
run;
data file3;
input a @@;
cards;
9 10 11 12
;
run;data file4;
input a @@;
cards;
13 14 15 16
;
run;
Hi All.I am looking for Good Institute who could Provide the
online SAS BI+DI Training along with software.Primarily in
Delhi/NCR or in Hyderabad Please help with name and contact
number of concerned person!! Thanks in Advance! :)
you have a data set like this.
data qqq;
input name $ total;
cards;
qq 22
ww 33
qq 22
ee 44
rr 33
ww 44
;
run;
and you want output like this.........
name total
qq 22
ww 44
Do it by data set step.
Dear all,
proc means data=dsn noprint completetypes;
class trtmntgroup /preloadfmt;
output out=tot n=n;
format trtmntgroup trtf. ;
by vstgrp descending severity;
run;
This is the code I used for AE table. I got the values
without giving the variable ‘trtmntgroup(numeric)’ in var
statement. And if I give the var statement for that variable
i’m getting the same values.How is that possible? What is
the difference between class and var statement? Could any
one explain me how does proc means work at the back end.
And what is the difference between _freq_ value and N value
in proc means.
Thanks and regards,
Rajesh.
How will you react when, while consulting a SAS
documentation manual to get an answer to a problem, someone
says hey, I thought you were supposed to know all that
stuff already, and not have to look it up in a book?
Will it bother you if the guy at the next desk times the
frequency and duration of your bathroom or coffee breaks on
the grounds that ?you are getting paid twice as much as he
is??
Do you need to rearrange the order of the data for the report?
128
how to create the AE dataset by using SDTMIG specifications
and SAP plan by using UNIX platform?
220
hi here is a problem can anybody solve this?
i want to report the data through third party file.
by using data _null_ or proc report or macro automation
process. but i want to insert the 'titles and footnotes' in
between the data and also starting of 2nd and ending of 2nd
and starting of 3rd and ending of the 3rd page.
tell me how and write the code?