Search notes:

SAS programming, function mod

mod calculates a number modulo another number.
data tq84_mod;

  do i = 1 to 20;
     m = mod(i, 7);
     output;
  end;

run;
Github repository about-SAS, path: /programming/functions/mod.sas

See also

functions

Index