English 中文(简体)
Excel-VBA: 无法插入换行符
原标题:Excel-VBA: Unable to Insert Line Breaks

我需要在单元格中插入线条, 但我无法插入换行符 。

例如:

直线1

行2

行3

使用VBA代码 :

             Ws.Cells(i, 2) = 直线1 & 行2 & 行3

我得到:

直线1 行2 行3

我如何解决这个问题?

最佳回答

这就是你在尝试的吗?

Ws.Cells(i, 2).Value = "line1" & vbnewline & "line2" & vbnewline & "line3"

Ws.Cells(i, 2).Value = "line1" & vbCrLf & "line2" & vbCrLf & "line3"

<强度 > EDIT :我的评论中提到的插入的引文。

问题回答

我测试了几个组合,结果如下:

cell(a,b) = line1 & vbCrLf & line2

result:
line1**
line2

cell(a,b) = line1 & vbCr & line2

result:
line1line2

cells(a,b) = line1 & vbLf & line2

result:
line1
line2

在上述结果中, * 表示空格( 我不知道为什么), 所以当您想要水平居中单元格内容时, vbCrLf 不推荐。 我倾向于 vbLf 。

VBA 中的断线是 vbCrLf , 您可以用字符串将其连接 。

Ws.Cells(i, 2) = line1 & line2 & Chr(10) & line3

FYI, 您可以使用简单易懂的变量名称来防止编码错误。

bx = vbCrLf

textstring = "Hello everybody!" & bx & "This is my second line!"




相关问题
import of excel in SQL imports NULL lines

I have a stored procedure that imports differently formatted workbooks into a database table, does work on them then drops the table. Here is the populating query. SELECT IDENTITY(INT,1,1) AS ID ...

Connecting to Oracle 10g with ODBC from Excel VBA

The following code works. the connection opens fine but recordset.recordCount always returns -1 when there is data in the table. ANd If I try to call any methods/properties on recordset it crashes ...

Excel date to Unix timestamp

Does anyone know how to convert an Excel date to a correct Unix timestamp?

C# GemBox Excel Import Error

I am trying to import an excel file into a data table using GemBox and I keep getting this error: Invalid data value when extracting to DataTable at SourceRowIndex: 1, and SourceColumnIndex: 1. As ...

Importing from excel "applications" using SSIS

I am looking for any tips or resources on importing from excel into a SQL database, but specifically when the information is NOT in column and row format. I am currently doing some pre-development ...

热门标签