[an error occurred while processing this directive]
Loops
Next: Counters are dates
Up: Macros
Previous: Subsetting observations from large
Macro loops allow you to %DO something for an index in some range of integers. For instance, you can write
%macro justaloop;
%do i =1 %to 200;
<some code>
%end;
%justaloop;
and some code will be run for all values of &j.
Subsections
[an error occurred while processing this directive]Andre de Souza
2012-11-19