My code looks like this:-
proc optmodel;
/*rest of my code */
solve;
print z;
print x;
print y;
When I run this I see the results as a report. I want z, x, y as a SAS table instead. z, x, y
I tried using
optmodel printlevel=2;
ods output PrintTable=expt ProblemSummary=exps DerivMethods=exdm
SolverOptions=exso SolutionSummary=exss OptStatistics=exos;
but it only showed the table for z and not for x and y