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.
我正在使用 JavaScript API 开发 Excel 加载项,以在 Excel Office 365 中构建加载项。对于 Excel 表,如何将整个列格式化为默认情况下仅包含字符串。[我需要在特定列的所有单元格中将数字显示为 012 而不是 12。]
sheet.getRange("A1:A3") 只会格式化前三个单元格。
sheet.getRange("A:A") 将为您提供整个 A 列,而不仅仅是 A 列中的前 3 个单元格。