March 6, 2010 at 1:23 am
Hi,
I have a multi select parameter CustomerType.
I have a textbox with the following expression ="Customer Type: " & join(Parameters!CustomerType.Label,",")
When i run the report i get the following error:
Warning 1 [rsRuntimeErrorInExpression] The Value expression for the textbox ‘textbox71’ contains an error: Overload resolution failed because no Public 'Join' can be called with these arguments: 'Public Shared Function Join(SourceArray As String(), [Delimiter As String = ]) As String': Argument matching parameter 'SourceArray' cannot convert from 'String' to 'String()'. 'Public Shared Function Join(SourceArray As System.Object(), [Delimiter As String = ]) As String': Argument matching parameter 'SourceArray' cannot convert from 'String' to 'Object()'.
What is the problem?
Thanks
July 9, 2010 at 11:19 am
Parameters!CustomerType.Label is not an array.
It is the Label displayed for the Parameter.
Use Parameters!CustomerType.Value
July 12, 2010 at 3:10 am
Hi,
Whether your dataset for the parameter is Cube (MDX ) or Sql query?
if it is from cube can u provide some sample input for your parameter?
Regards,
Gayathri 🙂
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply