I am using SAS ODS statement to create excel files in a program like so:
ods listing close;
ods tagsets.excelxp file='filters.xls' style=statistical
options(autofilter='2-7' frozen_headers = '3' index='yes' sheet_name='triangle' embedded_titles='yes');
title "Accumulated Triangle Table";
proc print data=TriangleSist; run;
ods tagsets.excelxp close;
ods listing;
However, when I run this program, SAS asks me whether I want to save the excel file each time I run it with a pop-up dialog. How can I get it to stop doing that?