0

此链接显示如何编写一个小程序以将单元格值括在双引号中以进行 CSV 导出。

' Write current cell's text to file with quotation marks.
         Print #FileNum, """" & Selection.Cells(RowCount, _
            ColumnCount).Text & """";

有没有办法引用单元格的格式化值并将格式化值写出来?

例如,原始数据可能是8543,但电子表格可能对列应用了邮政编码格式,因此值显示为08543

4

1 回答 1

0

做这样的事情 - 获取值,然后根据所选范围的数字格式对其进行格式化:

Format(Range("A1").Value, Range("A1").NumberFormat)
于 2013-03-11T15:12:13.077 回答