SAS MACRO INTERVIEW QUESTIONS 1 | SAS ADVANCED TRAINING

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ม.ค. 2025
  • SAS MACRO INTERVIEW QUESTIONS AND ANSWERS | SAS MACRO TRAINING
    This SAS tutorial contains below topics on SAS macro variables
    Key Questions:
    Time Topics
    MM:SS
    00:23 What are the various ways to create macro variables in SAS?
    01:21 What is the difference between Call Symput and call Symputx?
    04:03 Write a program to print all the macro variables in SAS log?
    05:10 What would be the value of variable z in SAS log and why?
    08:22 What would be the value of variable x inside macro and outside macro definition in below
    program and why?
    14:48 How can you remove a macro variable?
    Channel contact details:
    officialsasworld@gmail.com

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

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

    Very informative video

  • @albertneil290
    @albertneil290 6 หลายเดือนก่อน

    Very nice video...
    Sometime we use but this is actually with reasons...👌👌
    Thanks for the video

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

    Very useful videos. Please upload more scenario based interview questions.

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

    Finally we would love to watch ur videos..do more videos sir

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

      Sorry, was busy with my daily job and could not create more videos. Now I have some time, so will create more

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

    Wanted more explanation on local and global variables and wanted interview questions on functions

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

    Thanks and very usefull.

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

    Awesome, if you add SDTM or Adam topic then thing will be superb.

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

    Super explanation sir keep it up

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

      I am glad you liked it. Thanks

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

    Very nice explanation sir, please do more videos on Macros

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

    can you please make a video how to pic latest file available by using SAS Macro

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

      Hi, I will create one soon.

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

    Symdel and call symdel both same or not those can delete local ,global macro variable ?

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

      Both are not same, call symdel can delete only one variable at a time where as %symdel can delete multiple variables. Both removes global macro variables.

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

      @@sasworld2021
      Thank you sir 🙏

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

    Rolling cumulative count possible with proc SQL if so please give details

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

      Yes, it's possible. See below program:
      data salary;
      input sal;
      datalines;
      100
      200
      300
      400
      ;
      run;
      proc sql;
      create table cumulative_salary as
      select a.*,(select sum(sal) from salary as cm where cm.sal

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

      Thank you for giving reply n this question shooted by one interviewer recently.

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

    call symputx does it applies both characteric and numeric varikables