SAS MACRO INTERVIEW QUESTIONS 1 | SAS ADVANCED TRAINING

Sdílet
Vložit
  • čas přidán 30. 08. 2022
  • 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

Komentáře • 23

  • @albertneil290
    @albertneil290 Před 9 dny

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

  • @swathiemayavaramban7477
    @swathiemayavaramban7477 Před rokem +2

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

  • @_MANI_5
    @_MANI_5 Před rokem +3

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

    • @sasworld2021
      @sasworld2021  Před rokem

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

  • @ajaykushwaha4233
    @ajaykushwaha4233 Před rokem +5

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

  • @shyamkumargaikwad684
    @shyamkumargaikwad684 Před rokem +2

    Thanks and very usefull.

  • @baali735
    @baali735 Před rokem +2

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

  • @BHARATHEEYUDU.
    @BHARATHEEYUDU. Před rokem +2

    Super explanation sir keep it up

  • @purushotham714
    @purushotham714 Před rokem +1

    Very nice explanation sir, please do more videos on Macros

  • @jagadeeshmypati4085
    @jagadeeshmypati4085 Před rokem +1

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

  • @ravurisudheer176
    @ravurisudheer176 Před rokem +1

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

    • @sasworld2021
      @sasworld2021  Před rokem +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 Před rokem +1

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

  • @ramubuddi8733
    @ramubuddi8733 Před rokem

    call symputx does it applies both characteric and numeric varikables

  • @BHARATHEEYUDU.
    @BHARATHEEYUDU. Před rokem +1

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

    • @sasworld2021
      @sasworld2021  Před rokem +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.

    • @BHARATHEEYUDU.
      @BHARATHEEYUDU. Před rokem

      @@sasworld2021
      Thank you sir 🙏