如果用户自定义小数分隔符

时间:2017-11-11 18:48:16

标签: vba ms-access ms-access-2016

在Microsoft Access 2016(版本16.0.8201.2200)中,当自定义Windows 10中的数字格式时,特别是在选择了US区域的计算机上,如果您交换“十进制”,则VBA TransferSpreadsheet method无法正常工作符号“和”数字分组符号“格式化为德国惯例:

enter image description here

当我使用TransferSpreadsheet保存查询时,当我后来尝试在Excel中打开该工作簿时,它说:

  

我们在'...'的某些内容中发现了一些问题。你想让我们尽可能多地恢复吗?

enter image description here

当我这样做时,我收到以下警告:

  

Excel能够通过修复或删除不可读的内容来打开文件。

enter image description here

当我查看XLSX内容的内容时,我并不感到意外,因为内部XML格式不正确。因为我已经在Windows中将小数分隔符替换为“,”,所以它使用逗号创建XML中的数字,而不是小数位。但XML标准规定,无论您的区域偏好如何,XML中的数字都应使用“。”。作为小数符号。

<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
  <dimension ref="A1:K20"/>
  <sheetViews>...</sheetViews>
  <sheetFormatPr defaultRowHeight="15"/>
  <sheetData>
    <row outlineLevel="0" r="1">...</row>
    <row outlineLevel="0" r="2">
      ...
      <c r="D2" s="0">
        <v>2,9328903531E+16</v>
      </c>
      <c r="E2" s="0">
        <v>5,404939826E+16</v>
      </c>
      <c r="F2" s="0">
        <v>2,3923963705E+16</v>
      </c>
      ...
    </row>
    ...
  </sheetData>
  <pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/>
</worksheet>

虽然“,”可能是UI中所需的十进制符号格式,但XLSX内部格式必须符合XML标准,“。”小数符号。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

底线,要使TransferSpreadsheet方法正常工作,如果要更改数字格式,请不要使用“自定义格式”设置:

enter image description here

您应该将这些值重置为默认值,然后在前面的对话框中选择一个适当的区域,根据您的喜好格式化数字:

enter image description here

选择了根据需要格式化的区域,从而避免了TransferSpreadsheet错误。执行此操作时,电子表格将在Excel中正确显示:

enter image description here

但XLSX也将正确格式化:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x14ac" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac">
  <dimension ref="D3:F3"/>
  <sheetViews>
    <sheetView tabSelected="1" workbookViewId="0">
      <selection activeCell="F12" sqref="F12"/>
    </sheetView>
  </sheetViews>
  <sheetFormatPr defaultRowHeight="15" x14ac:dyDescent="0.25"/>
  <cols>
    <col min="4" max="6" width="26.85546875" style="1" bestFit="1" customWidth="1"/>
  </cols>
  <sheetData>
    <row r="3" spans="4:6" x14ac:dyDescent="0.25">
      <c r="D3" s="1">
        <v>2.9328903531E+16</v>
      </c>
      <c r="E3" s="1">
        <v>5.40493826E+16</v>
      </c>
      <c r="F3" s="1">
        <v>2.3923963705E+16</v>
      </c>
    </row>
  </sheetData>
  <pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/>
</worksheet>