Has anyone experienced this?
Here is an example of a Jump to URL link I use. This causes Excel to come up
with the data in a separate window:
="javascript:void(window.open('" & Globals!ReportServerUrl &
"?/SomeFolder/SomeReport&ParamName=" & Parameters!ParamName.Value &
"&rs:Format=CSV&rc:Encoding=ASCII','_blank'))"
If you don't want to have it appear in a new window then do this in jump to
URL:
=Globals!ReportServerUrl & "?/SomeFolder/SomeReport&ParamName=" &
Parameters!ParamName.Value & "&rs:Format=CSV&rc:Encoding=ASCII"
Very nice and very fast.
--
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"D Witherspoon" <dwithe...@noway.org> wrote in message
news:%23H%233ymD9...@TK2MSFTNGP14.phx.gbl...
I am using given below script for rendering approx 85000 data into the csv format but it is exporting only 65,555 data into csv.
I mean am putting &rs:Format=CSV&rc:Encoding=ASCII on my URL.
How to export all 85000 data into the CSV files.
="javascript:void(window.open('http://localhost/ReportServer/Pages/ReportViewer.aspx?%2fKonsolidata_Data_Exporting_Project%2fTest_EXPORT_REPORT_TEST&rs:Command=Render&RP_cntry="+Fields!STD_CTRY_NM.Value+"&M_DATE="+Fields!Mon_YY.Value+"&RP_STTS="+Join(Parameters!RP_cll_stts.Value,",")+"&RP_CT1="+Join(Parameters!RP_cll_typ_l1.Value,",")+"&RP_CT2="+Join(Parameters!RP_cll_typ_l2.Value,",")+"&RP_CS1="+Join(Parameters!RP_cust_clssfctn_l1.Value,",")+"&RP_CS2="+Join(Parameters!RP_cust_clssfctn_l2.Value,",")+"&RP_PS1="+Join(Parameters!RP_prdct_sgmnt_l1.Value,",")+"&RP_PS2="+Join(Parameters!RP_prdct_sgmnt_l2.Value,",")+"&rs:Format=CSV&rc:Encoding=ASCII'))"
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/
What are you using to determine the number or rows in the csv file? What
version of Excel are you using?
--
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"Kali Charan Tripathi" <tripat...@yahoo.co.in> wrote in message
news:ff84f052-7d41-47f3...@developmentnow.com...