以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 半Excel与VBA中使用Excel函数的问题 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=22518) |
-- 作者:yankunhao -- 发布时间:2012/8/15 15:14:00 -- 半Excel与VBA中使用Excel函数的问题 如有下面的代码,请问其中的"a = App.WorksheetFunction.RoundUp(Len(ws.range(s1)), 0) 有什么问题吗? 该语句主要是想计算Exce单元格中的字数的,但在说明文件中找不到用VBA如何调用Excel函数的相关内容.
Dim Book As New XLS.Book(ProjectPath & "Attachments\\销售订单.xls") Dim lastrow As Long rng = ws.range(Ws.cells(11,1),Ws.cells(lastrow,1)).entirerow.autofit a = App.WorksheetFunction.RoundUp(Len(ws.range(s1)), 0) |