No default value for any of them. The top radio button (No default) was selected for all of them (I am using 2008 - it doesn't have the parameter tabs anymore, but has a parameter node in the Report Data pane.) I'll include my SP here so you can look at that as well. Maybe I did something wrong in it:USE [SoftwareReporting]GO/****** Object: StoredProcedure [dbo].[sp_ReportBasic] Script Date: 03/24/2010 10:08:56 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATE PROCEDURE [dbo].[sp_ReportBasic] @AppName VARCHAR(255) = NULL, @WkstnName VARCHAR(128) = NULL, @EmployeeID VARCHAR(255) = NULL, @PAYROLL_CO_num VARCHAR(4) = NULL, @PAYROLL_RC_num VARCHAR(7) = NULL, @MANAGER_EMPLOYEE_ID VARCHAR(255) = NULLASBEGINSELECT v_CommonApp.AppName , v_SMSAppData.[Version] , v_SMSAppData.WkstnName , SMS_Hardware.EmployeeID , ePeople_feed.NAME , ePeople_feed.PAYROLL_CO_num , ePeople_feed.PAYROLL_RC_num , ePeople_feed.EMAIL_ADDRESS , ePeople_feed.PHONE_NUMBER , ePeople_feed.MANAGER_EMPLOYEE_ID , ePeople_feed.MANAGER_NAME , ePeople_feed.MANAGER_PHONEFROM v_SMSAppData LEFT JOIN v_CommonApp ON v_SMSAppData.appID = v_CommonApp.AppID LEFT JOIN SMS_Hardware ON v_SMSAppData.WkstnName = SMS_Hardware.wksname LEFT JOIN ePeople_feed ON SMS_Hardware.EmployeeID = ePeople_feed.EMPLOYEE_IDWHERE (@AppName IS NULL OR AppName LIKE '%' + @AppName + '%') AND (@WkstnName IS NULL OR WkstnName LIKE '%' + @WkstnName + '%') AND (@EmployeeID IS NULL OR EmployeeID = @EmployeeID) AND (@PAYROLL_CO_num IS NULL OR PAYROLL_CO_num = @PAYROLL_CO_num) AND (@PAYROLL_RC_num IS NULL OR PAYROLL_RC_num = @PAYROLL_RC_num) AND (@MANAGER_EMPLOYEE_ID IS NULL OR EmployeeID = @MANAGER_EMPLOYEE_ID)ORDER BY v_CommonApp.AppNameENDGO
And here is the section of XML code for the RDL. The AppName remember I had as nullable as well (before) <ReportParameters> <ReportParameter Name="AppName"> <DataType>String</DataType> <AllowBlank>true</AllowBlank> <Prompt>App Name</Prompt> </ReportParameter> <ReportParameter Name="WkstnName"> <DataType>String</DataType> <Nullable>true</Nullable> <AllowBlank>true</AllowBlank> <Prompt>Wkstn Name</Prompt> </ReportParameter> <ReportParameter Name="EmployeeID"> <DataType>String</DataType> <Nullable>true</Nullable> <AllowBlank>true</AllowBlank> <Prompt>Employee ID</Prompt> </ReportParameter> <ReportParameter Name="PAYROLL_CO_num"> <DataType>String</DataType> <Nullable>true</Nullable> <AllowBlank>true</AllowBlank> <Prompt>PAYROLL CO num</Prompt> </ReportParameter> <ReportParameter Name="PAYROLL_RC_num"> <DataType>String</DataType> <Nullable>true</Nullable> <AllowBlank>true</AllowBlank> <Prompt>PAYROLL RC num</Prompt> </ReportParameter> <ReportParameter Name="MANAGER_EMPLOYEE_ID"> <DataType>String</DataType> <Nullable>true</Nullable> <AllowBlank>true</AllowBlank> <Prompt>MANAGER EMPLOYEE ID</Prompt> </ReportParameter> </ReportParameters>
Anyway, thanks for the help.Duane