Parameter is missing a value ssrs 2008

前端 未结 10 1237
一生所求
一生所求 2021-01-01 16:53

I have a parameter of integer datatype which is hidden. When i run the report, report gives me an error

Parameter X is missing a value

10条回答
  •  无人及你
    2021-01-01 17:25

    The problem occurs also, if you have a parameter that depends of another one without "default value" inside the Dataset Query and does not admit null value.

    For example:

    Parameter 1 have a default value: NameEmployee from the dataset "EmployeeSearch"

    But the dataset "EmployeeSearch" have a filter or a parameter inside the query named @Month that indicate the number of the month. So if the value of @Month is null, SSRS will say "Parameter is missing a value".

提交回复
热议问题