使用Range("A1").Text
代替.Value
发表评论编辑:
为什么?
因为.Text
Range 对象的属性返回电子表格中字面上可见的内容,所以如果您显示单元格,i100l:25he*_92
那么 <-Text
将准确返回单元格中的内容,包括任何格式。and属性返回存储在引擎盖下
的单元格中
的内容,不包括格式。特别是对于日期类型,它将返回十进制表示。.Value
.Value2
.Value2
如果您想更深入地了解含义和性能,我刚刚发现this article
这似乎是一个很好的指南
另一个编辑
在这里你去@Santosh
输入(手动)从DEFAULT(col A)到其他列的值
根本不格式化A
列将B列格式化为文本
将C列格式化为日期[dd/mm/yyyy]
格式化列现在将 D 作为百分比
,
将此代码粘贴到模块中
Sub main()
Dim ws As Worksheet, i&, j&
Set ws = Sheets(1)
For i = 3 To 7
For j = 1 To 4
Debug.Print _
"row " & i & vbTab & vbTab & _
Cells(i, j).Text & vbTab & _
Cells(i, j).Value & vbTab & _
Cells(i, j).Value2
Next j
Next i
End Sub
和Analyse
输出!它真的很简单,我无能为力了:)
.TEXT .VALUE .VALUE2
row 3 hello hello hello
row 3 hello hello hello
row 3 hello hello hello
row 3 hello hello hello
row 4 1 1 1
row 4 1 1 1
row 4 01/01/1900 31/12/1899 1
row 4 1.00% 0.01 0.01
row 5 helo1$$ helo1$$ helo1$$
row 5 helo1$$ helo1$$ helo1$$
row 5 helo1$$ helo1$$ helo1$$
row 5 helo1$$ helo1$$ helo1$$
row 6 63 63 63
row 6 =7*9 =7*9 =7*9
row 6 03/03/1900 03/03/1900 63
row 6 6300.00% 63 63
row 7 29/05/2013 29/05/2013 41423
row 7 29/05/2013 29/05/2013 29/05/2013
row 7 29/05/2013 29/05/2013 41423
row 7 29/05/2013% 29/05/2013% 29/05/2013%