Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Feb 14, 2012 06:10 AM by jeeveshfuloria08
Member
93 Points
70 Posts
Feb 07, 2012 07:56 PM|LINK
Hi,
I am trying to set the filter for the report.
Here is my expression : [Cause_Code_1]
Operator: In
Value: "=iif(Parameters!Cause_Code.Value is NOTHING, CStr(Fields!CAUSE_CODE_1.Value), Split(Parameters!Cause_Code.Value, "","" ) )"
When i click on OK buton, i am getting the following error:
<Value>
The value ') )"' contains an unexpected quotation mark(").
And if i am using the following:
Value: ="iif(Parameters!Cause_Code.Value is NOTHING, CStr(Fields!CAUSE_CODE_1.Value), Split(Parameters!Cause_Code.Value, "," ) )"
I am getting the following error on preview of report:
The filterValue expression for the tablix contains an error:[BC30201] Expression expected.
Can anyone tell me the exact syntax of the value?
Thanks!!
Participant
1552 Points
287 Posts
Feb 14, 2012 06:10 AM|LINK
try with this expression:-
syntax is:-=IIf(IsNothing([Your expression here]), [value if it is nothing], [value if it is something])
=IIF(IsNothing(Parameters!Cause_Code.Value),CStr(Fields!CAUSE_CODE_1.Value), Split(Parameters!Cause_Code.Value,","))
karthik_newb...
Member
93 Points
70 Posts
Error:[BC30201] Expression expected
Feb 07, 2012 07:56 PM|LINK
Hi,
I am trying to set the filter for the report.
Here is my expression : [Cause_Code_1]
Operator: In
Value: "=iif(Parameters!Cause_Code.Value is NOTHING, CStr(Fields!CAUSE_CODE_1.Value), Split(Parameters!Cause_Code.Value, "","" ) )"
When i click on OK buton, i am getting the following error:
<Value>
The value ') )"' contains an unexpected quotation mark(").
And if i am using the following:
Value: ="iif(Parameters!Cause_Code.Value is NOTHING, CStr(Fields!CAUSE_CODE_1.Value), Split(Parameters!Cause_Code.Value, "," ) )"
I am getting the following error on preview of report:
The filterValue expression for the tablix contains an error:[BC30201] Expression expected.
Can anyone tell me the exact syntax of the value?
Thanks!!
jeeveshfulor...
Participant
1552 Points
287 Posts
Re: Error:[BC30201] Expression expected
Feb 14, 2012 06:10 AM|LINK
try with this expression:-
syntax is:-=IIf(IsNothing([Your expression here]), [value if it is nothing], [value if it is something])