我需要在单元格中插入线条, 但我无法插入换行符 。
例如:
直线1
行2
行3
使用VBA代码 :
Ws.Cells(i, 2) = 直线1 & 行2 & 行3
我得到:
直线1 行2 行3
我如何解决这个问题?
我需要在单元格中插入线条, 但我无法插入换行符 。
例如:
直线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
, 您可以用字符串将其连接 。
FYI, 您可以使用简单易懂的变量名称来防止编码错误。
bx = vbCrLf
textstring = "Hello everybody!" & bx & "This is my second line!"
For an Excel formula I need the first cell out of a list of cells which contains a numeric value: A | B | C | ... | Z | ----------------------------- | 0.1 | 0.4 | ... | =0.1 | | ...
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 ...
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 ...
I m using Application run to call several macros in order like this. Sub Run_All_Macros() Application.Run ("Macro_1") Application.Run ("Macro_1") End Sub When I start Run_All_Macros, all the ...
Does anyone know how to convert an Excel date to a correct Unix timestamp?
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 ...
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 ...
I have created an Add-In in C# that implements user defined functions for Excel. These UDF s return immediately, but they control background asynchronous procedures. These procedures have status ...