我正在创建信件表格,并且(惊喜)有一些换行符。我想这样做而不为每个段落创建一个新字段。将文本解释设置为HTML",但换行的执行非常草率。
dim someText as string
someText = "<p>This is some text " + {dbField} + " followed by some more text.</p>" + _
"<p>The text continues, but it doesn't create a space between the paragraphs. So I have to do something sloppy like this:</p>" + _
"<p> </p>"
"<p>And now I'm assured there is a line break between the two paragraphs.</p>"
formula = someText
是否有更简洁的方法:
<p> </p>