Hi ,
I have a SSIS package using VB to render Raw Data Report running weekly, it used to work fine but recently since the data getting larger and larger , I got on step failed with this error message :
---> System.Web.Services.Protocols.SoapException:Excel Rendering Extension: Number of rows exceeds the maximum possible
rows per sheet in this format; Rows Requested: 65582
For a quick fix, I was planning to try Excel 2007 by changing the Extension below to .xlsx, but still I got same error, can anyone help with this ?
.Credentials = System.Net.CredentialCache.DefaultCredentials
.Url = "http://useomapp1558/reportserver/reportexecution2005.asmx"
.LoadReport("/Custom Reports/BackFillData", Nothing)
objResult = .Render("Excel", Nothing, ".xls", Nothing, Nothing, Nothing, Nothing)
EW