In an ssrs 2012 report, I am getting the error message of 'The Value Expression for the 'Textbox80.paragraphs[0].TextRuns[0]' contains an error [BC305156].
Overload resolution dailed becuase no accessible 'IIf' accepts this number of agruments.
Overload resolution dailed becuase no accessible 'IIf' accepts this number of agruments.
The problem is caused from the following iif
=IIF(Fields!homeLanguage.Value = "Spanish"," en "Approved Technology". La lista tiene tres categorías:", " on the "Approved Technology" icon. The list has three categories:")
when i change the iif to the following it works:
=IIF(Fields!homeLanguage.Value = "Spanish",' en 'Approved Technology'. La lista tiene tres categorías:", " on the 'Approved Technology' icon. The list has three categories:")
The user wants me to place "Approved Technology" to be in double quotes instead of 'Approved Technology'.
Thus can you show me what I can do to make the "Approved Technology" show up?