Hello everyone, Again i am hit with one strange error. I am creating a report using sas stored procedure to get the ouput in excel spreadsheet from running this stored procedure from web application. while i have used same code which i have used in previous reports and those are giving result absolutely fine. I am using below code: data _null_; rc = stpsrv_header('Content-disposition','attachment; filename=test.xls'); rc = stpsrv_header('Content-disposition',"inline"); run; OPTIONS NOBYLINE MISSING=' '; /*ods tagsets.ExcelXP options(*/ %let _ODSDEST=TAGSETS.EXCELXP options( EMBED_TITLES_ONCE = 'YES' EMBEDDED_TITLES='YES' /*EMBEDDED_FOOTNOTES='YES' */ sheet_name='Current Data' /*autofilter='ALL' */ /*frozen_headers='3' */ /*frozen_rowheaders='NO' */ ABSOLUTE_COLUMN_WIDTH='13,10,11,12,10,12,12,12,12,12,11,11,11,16,16,16,10,10,10,10,10,10,10' /*ZOOM='80' */ /*WRAPTEXT='YES' */ BLACKANDWHITE='YES' ); %let _ODSSTYLE=seaside; Then MACRO Code to run report. I am getting below error rather than getting output in excel file. <?xml version="1.0" encoding="utf-8" ?> <?mso-application progid="Excel.Sheet"?> - <!-- Generated by the SAS Excelxp Tagset .v1.131, 04/23/2015 --> - <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40"> - <DocumentProperties xmlns="urn:schemas-microsoft-com:office"> <Author>sassrv</Author> <LastAuthor>sassrv</LastAuthor> <Created>2017-09-28T08:16:45</Created> <LastSaved>2017-09-28T08:16:45</LastSaved> <Company>SAS Institute Inc. http://www.sas.com</Company> <Version>9.04.01M4P11092016</Version> </DocumentProperties> - <Styles> - <Style ss:ID="_body"> Can anyone suggest what should i do to get rid of this and get output in excel spreadsheet. Thanks in advance !!
... View more