data one; if _n_ = 1 then do i = 1 to 4; set sashelp.class; end; value = _n_; output; run; I want to understand why there are two outputs. As per the logic, there should be one output, when _n_ = 2, all the column values should go missing. then why the first observation is being retained?
... View more