Hi,
I'm sorry about the lack of information in my last post.
1) I am using SAS EG (Entreprise Guide)
2) I am using the OUT= option to get my output dataset
I know I can uncheck the html output option for my SAS, but other people from my department will use the program and I don't want them to get the html output as it is unnecessary and ressource consuming.
Note : I have tried putting the ODS LISTING CLOSE as well as the ODS HTML CLOSE command, but the html output poped up anyway.
Here is a bit of my code (note that to get the base code, I copied the SAS given code from the Summary Table option in SAS EG.)
Again, thank you for your time and patience.
ODS HTML CLOSE;
PROC TABULATE
DATA=WORK.FINAL
	OUT=WORK.SummaryTable1(LABEL="Summary Tables  for WORK.FINAL")
	
	;
	VAR APPROVAL APPDOL2 CLAIM ARREAR CLMDOL2 RFFI APPROVAL2 APPDOL_2 CLAIM2 ARREAR2 CLMDOL_2;
	CLASS LNAMORT /	ORDER=UNFORMATTED MISSING;
	CLASS BEACONR /	ORDER=UNFORMATTED MISSING;
	CLASS PERIOD /	ORDER=UNFORMATTED MISSING;
	CLASS PRODUCT /	ORDER=UNFORMATTED MISSING;
	TABLE 
/* Page Dimension */
PRODUCT,
/* Row Dimension */
PERIOD*
  BEACONR*
    ALL,
/* Column Dimension */
LNAMORT*(
  APPROVAL*
    N 
  APPDOL2*
    Sum 
  CLAIM*
    Sum) 		;
	;
RUN;
Message was edited by: SamuelG.