在 LotusScript 中将文本转换为 Excel 数字
谁能指导我如何将文本转换为数字? 我一直在尝试使用 xlapp.selection.FormatNumber = "#,##0.00" 但不起作用,因为导出的列结果是文本格式。感谢您的帮助,非常感谢。
-编辑 我正在使用 LotusScript 将视图导出到 Excel 中。我的困境是,包含数字的导出列最终被导出为文本,并且需要先转换为数字,然后才能使用 xlapp.selection.FormatNumber = "#,##0.00" 对其进行格式化。我想知道通过使用 LotusScript 将列转换为数字的语法。
Can anyone guide me on how do i convert a Text To Number?
I've been trying to use
xlapp.selection.FormatNumber = "#,##0.00" But won't work because the exported column turns out to be in a text format. thanks for your help, really appreciate it.
-Edit
I am using lotusscript to export a view into excel. My dilemma is that the exported column containing Numbers turns out to be exported as Text and Needs to be converted to number first before i can use xlapp.selection.FormatNumber = "#,##0.00" to format it. I would like to know the syntax to convert the column into number by means of using lotusscript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CDec
怎么样?What about
CDec
?要将列值转换为 LotusScript 中的数字,请使用 CDbl 函数。
To convert a column value into a number in LotusScript, use the CDbl function.