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

Sdílet
Vložit

Komentáře • 7

  • @vikrambhosale1093
    @vikrambhosale1093 Před 8 měsíci

    Very informative sir❤

  • @ganeshrulz9983
    @ganeshrulz9983 Před 2 lety

    Lot of knowledge gained from your videos

  • @arunasharon5285
    @arunasharon5285 Před 2 lety

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

  • @sapnasingh7886
    @sapnasingh7886 Před 2 lety

    Very informative videos. Thank you

  • @moshiurrahman9677
    @moshiurrahman9677 Před 2 lety

    Thanks a lot.

  • @odi1357
    @odi1357 Před rokem

    %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  Před rokem +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.