Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
imranabdulaziz
Yak Posting Veteran
83 Posts |
Posted - 2009-01-11 : 22:52:39
|
Dear all,I am using ssrs2005.I wanted to navigates to another report through Jump to Url option. I have another parameterized report (to which I want to navigates). Paramtere are of different datatypes and one of them is null. When I am passing below link I get type mismatch error. Please help ="http://reportserver/reportserver?%2fdemo%2fRptArticleApproved&rs:Command=Renderarticleflag=0cate="&Fields!catecode.Value.ToString() &"frmonth=" &Parameters!frmonth.Value &"fryear=" &Parameters!fryear.Value & "tomonth="&Parameters!tomonth.Value &"toyear=" &Parameters!toyear.Value & "article="&Fields!articlecode.Value & "prod=<null>" |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-01-12 : 02:28:49
|
try like this="http://reportserver/reportserver?%2fdemo%2fRptArticleApproved&rs:Command=Renderarticleflag=0&cate="&Fields!catecode.Value.ToString() &"&frmonth=" &Parameters!frmonth.Value &"&fryear=" &Parameters!fryear.Value & "&tomonth="&Parameters!tomonth.Value &"&toyear=" &Parameters!toyear.Value & "&article="&Fields!articlecode.Value & "&prod=<null>" |
 |
|
|
|
|