SAS Macro Series Part 7a (Macro functions): Macro Quoting functions​​

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

КОМЕНТАРІ • 7

  • @vikrambhosale1093
    @vikrambhosale1093 9 місяців тому

    Very informative sir❤

  • @ganeshrulz9983
    @ganeshrulz9983 2 роки тому

    Lot of knowledge gained from your videos

  • @arunasharon5285
    @arunasharon5285 2 роки тому

    Hi thanks...i have learned a lot from your macro programming series thank you so much

  • @sapnasingh7886
    @sapnasingh7886 2 роки тому

    Very informative videos. Thank you

  • @moshiurrahman9677
    @moshiurrahman9677 2 роки тому

    Thanks a lot.

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

    %macro step(var=);
    data value;
    set sashelp.class;
    va1=%upcase(&var);
    %mend step;
    %step(var=NAME);
    sir why are the values of va1 not in upcase

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

      Need to understand that %and &symbol works first. Which means you are not even reading the sas dataset and your. %upcase works on macro variable and changes it value to upcase them databstep runs and nothing happens there. Please check out my macro series, part 1, where I discuss this in detail.