or
var reportProcessor = new ReportProcessor();RenderingResult result = reportProcessor.RenderReport("XLSX", report, null);string reportFileName = @"C:\report" + DateTime.Now.Ticks + ".xslx";FileStream fs = new FileStream(reportFileName, FileMode.Create);fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);fs.Flush();fs.Close();