SAS Interview preparation 1 | Date Conversion | SAS Put and Input function

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ก.พ. 2025

ความคิดเห็น • 16

  • @chandrakantsingh3925
    @chandrakantsingh3925 4 หลายเดือนก่อน +1

    What if our dataset already exists with different dates & formats than how we can use anydtdte32. ?

    • @sasworld2021
      @sasworld2021  4 หลายเดือนก่อน +1

      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.

  • @rakshakporwal-vlogs
    @rakshakporwal-vlogs 2 ปีที่แล้ว +1

    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. 👏

  • @AshokKumar.6767
    @AshokKumar.6767 2 ปีที่แล้ว

    Nice. Video

  • @HealthyFacts4U
    @HealthyFacts4U ปีที่แล้ว +1

    data a;
    x = 22754;
    date = put(x,yymmn6.);
    run;

  • @Srivirat_9240
    @Srivirat_9240 2 ปีที่แล้ว +2

    All the topics that you explained is for freshers or for experienced

    • @sasworld2021
      @sasworld2021  2 ปีที่แล้ว +1

      These questions cover 0-5 years of experience in SAS.

  • @srnivasagoudbollapelly9842
    @srnivasagoudbollapelly9842 2 ปีที่แล้ว

    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

    • @sasworld2021
      @sasworld2021  2 ปีที่แล้ว

      Thanks for Asking. Please use ANYDTDTE informat to read mixed date data.

  • @zebajabeenmohammed6500
    @zebajabeenmohammed6500 2 ปีที่แล้ว +1

    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.

    • @sasworld2021
      @sasworld2021  2 ปีที่แล้ว

      @zebajabeen mohammed I will soon create a video on SAS certification.

  • @Ashishmishra-fq7fx
    @Ashishmishra-fq7fx 2 ปีที่แล้ว +7

    data date5_cov;
    date=22754;
    date1=put(date,yymmn6.);
    run;
    It wil return 202204

    • @gagandhillon8864
      @gagandhillon8864 ปีที่แล้ว

      hi plz tell me, why you used n6. plz reply bro.

    • @balajichavan3388
      @balajichavan3388 ปีที่แล้ว

      ​@@gagandhillon8864 coz it will gives year and month only.