5

I have 18 Boolean parameters in my report. I want to make their default value to false through expression when ever user runs the report.

I am trying this but its not working

=SIDIdNum.Value = "false"

Getting Error: parameter SIDIdNum caontain an error [BC30451]

younus
  • 101
  • 2
  • 2
  • 10

2 Answers2

8

Have you tried just...

false

enter image description here

I'm also not sure where you're trying to set this value? If you are accessing the parameter from somewhere other than parameter properties dialog, you'll need to use

Parameters!SIDIdNum.Value="false"
Trubs
  • 2,829
  • 1
  • 24
  • 33
6

I had to tweak the prior answer in SSRS 2012.

I needed to make the value: =false

Michele Adams
  • 61
  • 1
  • 2