在VBA中连接0

时间:2017-10-25 19:33:02

标签: excel vba excel-vba

我有两列(第一列包含值0,第二列包含值1)。

此语句返回1,而不是01

Cells(1, 26).Value = CStr(Cells(1, 24).Value) & CStr(Cells(1, 25).Value)

我想在第3列中将它们连接到01。我该怎么做?

1 个答案:

答案 0 :(得分:5)

在单元格中放入整数值时,格式设置为number。 您可以使用:

Cells(1, 26).NumberFormat = "@" 'This set cell format to Text
Cells(1, 26).Value = CStr(Cells(1, 24).Value) & CStr(Cells(1, 25).Value)