Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/14.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/http/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Xml 报告的定义无效_Xml_Rdlc_Reportviewer - Fatal编程技术网

Xml 报告的定义无效

Xml 报告的定义无效,xml,rdlc,reportviewer,Xml,Rdlc,Reportviewer,正在尝试创建RDLC报告,但遇到异常: textrun“Textbox40.段落[0].TextRuns[0]”的值表达式包含错误:[BC30516]重载解析失败,因为没有可访问的“IIf”接受此数量的参数。代码如下: <Value> =Fields!TermsDescription.Value &amp; " " &amp; Fields!Pr

正在尝试创建RDLC报告,但遇到异常:

textrun“Textbox40.段落[0].TextRuns[0]”的值表达式包含错误:[BC30516]重载解析失败,因为没有可访问的“IIf”接受此数量的参数。代码如下:

                              <Value>
                                =Fields!TermsDescription.Value &amp; " " &amp; Fields!PrimaryCurrency.Value &amp; vbcrlf &amp;
                                iif((Parameters!DocType.Value = "INVOICE" and Fields!ShowInterestStatement.Value), "1.5% Per Month (19.56% per Annum)" &amp; vbcrlf &amp; "Will be Charged on Overdue Accounts" &amp; vbcrlf &amp;
                                IIF((Parameters!DocType.Value = "ORDER ACKNOWLEDGEMENT"), "All goods sold are subject to Apex Remington's terms and conditions of sale which are available for your review at http://www.apexdistribution.com/terms", "test") &amp;

                              </Value>
必须指定第一个函数的FalsePart

=IIf(
    Expression1,
    TruePart1 & IIf(Expression2, TruePart2, FalsePart2),
    FalsePart1
)