I have a table that loops kinda like below only with every combination of those three variables. And I would like to create a report based on every horizonal Column of that table E.g. one report would where comany = next, serial # = 965465, Tech= Superman and another where company = next , serial # = 56465, Tech = Jed.I'm not sure the best way to do this but I tried this and it failed. data MacSerial2; set MacSerial2; do i= 1 to 5; %let Tech = Tech[i] %let targetno2 = serial#[i] %let targetno3 = company[i] end; run; Company Serial # Tech Next 965465 Superman Next 56465 Jed Google 2463 Jed Google 1583 Justice Matt 15612 bad
... View more