在SSRS中,我有一个文本框,其值如下表达式所示,表达式位于单个文本框内,我需要对单个文本框中的行进行格式化。
= "Test Example "
& vbcrlf & SPACE(10)+ "First Name," + " Middle Name," + " Last Name"
& vbcrlf & SPACE(10)+ "Address 1," + " Address 2," + " Address 3"
& vbcrlf & SPACE(10)+ "Instructions: " + " Please select your country from the list below so we can display the correct prices, delivery times and shipping costs for your shipping destination."
当前输出为:
Test Example
First Name, Middle Name, Last Name
Address 1, Address 2, Address 3
Instructions: Please select your country from the list below so we can
display the correct prices, delivery times and shipping costs for your
shipping destination.
我必须格式化文本才能在同一点开始,并且预期输出如下:
Test Example
First Name, Middle Name, Last Name
Address 1, Address 2, Address 3
Instructions: Please select your country from the list below so we
can display the correct prices, delivery times and shipping costs for
your shipping destination.
如何更改表达式以获取预期的输出? 谢谢!