Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从 DTS 填充 Excel 工作表。结果被格式化为文本,因为 DTS 将单元格视为 varchar(255)。
单元格格式正确。问题是 Excel 将数据视为文本而不是日期时间或数字。
例如,单元格中的值显示为“2009-01-01 00:00:00”。如果我按 F2 编辑单元格,然后按 ENTER,Excel 会意识到它是一个日期,然后根据单元格格式对其进行格式化。
如何使用 VBA 将值格式化为数字或日期时间?
似乎您可以将单元格或范围的值分配给自身,并让 Excel 确定数据类型。您可以一次执行此操作,例如:
Worksheets("MySheet").Range("A:A").Value = Worksheets("MySheet").Range("A:A").Value