Apologies if this is already in EG 8.1, I'm still on EG 7.15.
Add Step Elapsed Time and Total Elapsed Time to EG Task Status Window.
Add options to turn on or off these optional columns (depending on desired screen real estate).
Perhaps allow me to drag them where I want them to display in the task status window.
data sleep / view=sleep;
set sashelp.class end=eof;
if eof then call sleep(10,1);
run;
proc sql;
select * from sleep;
quit;
proc transpose data=sleep out=transposed;
by name;
var age height weight;
run;
data out;
set sleep;
run;
So EG already knows when a step boundary occurs, since you can see it change in the task status window.
So the Step Elapsed Time would go 1,2,3,... for PROC SQL, reset to 1,2,3,... for PROC TRANSPOSE, same for data step, and Total Elapsed Time would go 1,2,3,...,30 as the program entry or EG task executes.
