Hi Rajesh, I am following your videos from last couple of days. Many of my concepts got cleared from your sessions. Things are vast, glad you covered and put all those together. 👏
Good explanation, if one date varible have partial dates or date9 or ddmmyy or date11 or multiple way come from raw dataset. Pls explain how to write program
Hi Rajesh, I am preparing to take base sas specialist exam .where can I get the programming questions to practice for my exam?can you please help me with that.
What if our dataset already exists with different dates & formats than how we can use anydtdte32. ?
This won't be a possibility except your variable is a text variable. And you can easily convert that variable to a date using input function.
Hi Rajesh,
I am following your videos from last couple of days. Many of my concepts got cleared from your sessions. Things are vast, glad you covered and put all those together. 👏
Nice. Video
data a;
x = 22754;
date = put(x,yymmn6.);
run;
All the topics that you explained is for freshers or for experienced
These questions cover 0-5 years of experience in SAS.
Good explanation, if one date varible have partial dates or date9 or ddmmyy or date11 or multiple way come from raw dataset.
Pls explain how to write program
Thanks for Asking. Please use ANYDTDTE informat to read mixed date data.
Hi Rajesh, I am preparing to take base sas specialist exam .where can I get the programming questions to practice for my exam?can you please help me with that.
@zebajabeen mohammed I will soon create a video on SAS certification.
data date5_cov;
date=22754;
date1=put(date,yymmn6.);
run;
It wil return 202204
hi plz tell me, why you used n6. plz reply bro.
@@gagandhillon8864 coz it will gives year and month only.