在 Access 2007 CSV 导出中:禁用科学记数法
从 Access 2007 导出 CSV 时,它会自动将小数转换为科学计数法。
不幸的是,接收它们的工具将这些字段视为文本,并按原样显示它们。
导出的值来自对某些 Excel 链接表运行的查询,并且它们完美地显示在查询视图中。
有什么办法可以禁用自动转换为科学记数法。
即,如果它在查询中显示为 0.007,那么它在输出 csv 中将显示为 0.007,而不是 7E3?
注意:为此我只能使用 Excel 和 Access。 尽管我很想改用 SQL Server,但如果我把它放在我妻子的工作笔记本电脑上,她会很不高兴!
When exporting a CSV from Access 2007, it automatically converts decimals into scientific notation.
Unfortunately the tool that receives them treats these fields as text, and displays them as is.
The values being exported are from a query being run against some Excel linked tables, and they appear perfectly in the query view.
Is there any way to disable the automatic conversion to scientific notation.
I.e. if it appears as 0.007 in the query, it will appear as 0.007 in the output csv rather then 7E3?
Note: I'm constrained to use Excel and Access for this. As much as I'd like to switch to SQL Server, my wife would be unhappy if I put it on her work laptop!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您有多种选择:
您可以使用
Format()直接在查询中使用
函数,强制违规列中的数据以某种方式格式化,例如:您可以在 VBA 中编写自己的 CSV 导出例程。
我最近发布了一个作为 这个问题。
您可以轻松修改代码以某种方式格式化数字类型。
如果您不知道如何操作,请告诉我,我将修改代码并将其发布在这里。
You have a couple of choices:
you can use the
Format()
function directly in your query to force the data in the offending columns to be formatted a certain way, for instance:you can write your own CSV export routine in VBA.
I posted one recently as an answer to this question.
You can easily modify the code to format numeric types a certain way.
If you don't know how, let me know and I'll modify the code and post it here.
您可以在 Access 中编写少量 VBA 代码来查询链接表或 Access 查询中的数据并将其写入文本文件,从而创建您自己的 .CSV 并放弃“向导”。 我不太喜欢 Access 的导出“向导”,只是自己创建文件。
You could write a short amount of VBA code in access to query the data from the linked table or Access query and write it out to a text file, thus creating your own .CSV and foregoing the "Wizard". I never liked Access' export "wizard" much, and just created the files myself.
在查询中处理此问题的一种简单方法是将值双重转换为长整数,然后转换为字符串。
对于 CSV 导出来说,无论如何它都是字符。
One easy way to handle this in a Query is to double-convert the value to long integer and then to string.
For CSV-export it is character anyway.