Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/87.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
Report Microsoft报表表达式(<;br/>;)_Report_Expression - Fatal编程技术网

Report Microsoft报表表达式(<;br/>;)

Report Microsoft报表表达式(<;br/>;),report,expression,Report,Expression,大家好,我只是想知道如何在Microsoft reports的表达式中创建一个或“/n” 我需要打印结果(例如) 实验室:实验室某物 命名:命名某物 最低金额:12356美元,折扣的5% 到目前为止,我已经知道了 ="Laboratorio:"& Fields!NombreProveedor.Value & "Nombre Oferta: " & Fields!NombreOferta.Value & "Monto Minimo: " & Fields!

大家好,我只是想知道如何在Microsoft reports的表达式中创建一个
或“/n”

我需要打印结果(例如)

实验室:实验室某物
命名:命名某物
最低金额:12356美元,折扣的5%

到目前为止,我已经知道了

="Laboratorio:"& Fields!NombreProveedor.Value &
"Nombre Oferta: " & Fields!NombreOferta.Value & 
"Monto Minimo: " & Fields!MontoMinimo.Value & "% de descuento " & Fields!Descuento.Value

在VBA中,新行由vbNewLine或vbCrLf实现:

"text1" & vbNewLine & "text2" ...

尝试使用System.Environment.NewLine

="First Line" + System.Environment.NewLine + "Second Line"