I am using sql server 2005. I have a report with 2 columns.one for report name and the other for status.I want that when a user clicks on a report's status column,the corresponding report should be opened. i am using the following code in the navigation tab-->jump to report. =Iif(Fields!SUB_REPORT.Value="GFM_FX_EXPOSURE$","www.google.co.in", Iif(Fields!SUB_REPORT.Value="GFM_INST_TYPE_EXP$","GFM_INST_TYPE_EXP", Iif(Fields!SUB_REPORT.Value="GFM_INST_TYPE_MV$","GFM_INST_TYPE_MV", Iif(Fields!SUB_REPORT.Value="GSS_FX_EXPOSURE$","GSS_FX_EXPOSURE", Iif(Fields!SUB_REPORT.Value="GSS_INST_TYPE_EXP$","GSS_INST_TYPE_EXP", Iif(Fields!SUB_REPORT.Value="GSS_INST_TYPE_MV$","GSS_INST_TYPE_MV", Iif(Fields!SUB_REPORT.Value="REGIONAL_EXPOSURE_EXP$","REGIONAL_EXPOSURE_EXP", Iif(Fields!SUB_REPORT.Value="REGIONAL_EXPOSURE_MV$","REGIONAL_EXPOSURE_MV","comparision_test")))))))) but,this code is not working.It opens the report in the last iff condition.Please help.
Discuss This Question: