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.
我需要上传一个包含多种值类型和带有 $ 符号等值的 excel 文件。我的要求是在上传 excel 文件后将所有 excel 单元格类型转换为 Text/General。在此先感谢,威尔逊。
Worksheet ws; Range oRng;
在 ws 中加载您的工作集 现在选择要进行格式化的单元格范围。
例如
oRng = ws.get_Range(StartCol + StartRow, EndCol + EndRow); Now just set oRng.NumberFormat `= "@";`