gpt4 book ai didi

excel - 工作簿(ThisWorkbook.Name)等价于starbasic

转载 作者:行者123 更新时间:2023-12-04 20:18:08 25 4
gpt4 key购买 nike

相当于什么

 Workbooks(ThisWorkbook.Name)

在自由办公室宏(StarBasic)

我想使用 Workbooks(ThisWorkbook.Name) 之类的

以下
 With Workbooks(ThisWorkbook.Name)

While (.Worksheets(ConstData.Detail).Range(ConstData.detailDtId + CStr(count)).Value <> 0)

//Some Code

Wend


End With

如何在 Libre Office Calc 宏中执行此操作

最佳答案

Open Office BASIC Guide 中的一个示例:

Dim Doc As Object
Dim Sheet As Object
Dim CellRange As Object

Doc = ThisComponent
Sheet = Doc.Sheets.getByName("Sheet 1")
CellRange = Sheet.getCellRangeByName("A1:C15")

MsgBox CellRange.computeFunction(com.sun.star.sheet.GeneralFunction.AVERAGE)

http://wiki.openoffice.org/wiki/Documentation/BASIC_Guide/Structure_of_Spreadsheets
http://wiki.openoffice.org/wiki/Documentation/BASIC_Guide/Editing_Spreadsheet_Documents

关于excel - 工作簿(ThisWorkbook.Name)等价于starbasic,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16729214/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com