SAS MACRO INTERVIEW QUESTIONS 1 | SAS ADVANCED TRAINING

Поділитися
Вставка
  • Опубліковано 19 вер 2024

КОМЕНТАРІ • 23

  • @albertneil290
    @albertneil290 2 місяці тому

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

  • @shyamkumargaikwad684
    @shyamkumargaikwad684 Рік тому +2

    Thanks and very usefull.

  • @_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

  • @ajaykushwaha4233
    @ajaykushwaha4233 2 роки тому +5

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

  • @swathiemayavaramban7477
    @swathiemayavaramban7477 Рік тому +2

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

  • @BHARATHEEYUDU.
    @BHARATHEEYUDU. 2 роки тому +2

    Super explanation sir keep it up

  • @baali735
    @baali735 Рік тому +2

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

  • @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

  • @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.

  • @BHARATHEEYUDU.
    @BHARATHEEYUDU. Рік тому +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.

    • @BHARATHEEYUDU.
      @BHARATHEEYUDU. Рік тому

      @@sasworld2021
      Thank you sir 🙏

  • @ramubuddi8733
    @ramubuddi8733 Рік тому

    call symputx does it applies both characteric and numeric varikables