- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 OpenOffice Calc 宏(在 Basic 中),它将事件工作表中的所有数字四舍五入到给定的小数位数。处理 9000 行电子表格的 100 行大约需要 4 秒。每行有 35 列,其中 19 列是数字。
我怎样才能让这个执行得更快?这是我为 OpenOffice 编写的第一个宏,所以很可能有我从未听说过的更快的方法。这是我的代码:
Dim oFunction as Object
' Round all Value cells (cells that do not contain Text or Functions) on the current sheet to as many decimal places as user requests.
Sub RoundUsedCells
Dim oSheet As Object, oUsedRange as Object, oCursor as Object, oCell As Object
Dim row, column,lastRow, lastColumn
Dim places$, placesToRound
Dim roundedValue as Double
' Ask user how many decimal places to round
places$ = InputBox ("Round to how many places (leave blank to cancel)?")
if (places$ is Nothing or places$ = "") then
' Do nothing.
else
placesToRound = CInt(places$)
' Get the currently active sheet.
oSheet = thiscomponent.getcurrentcontroller.activesheet
' Create a one cell range at the origin,
' then create a cursor that allows us to extend the range to include all the "used" cells.
' The cursor will then allow us to find out how large is that used range.
oUsedRange = oSheet.getCellRangeByPosition(0,0,0,0)
oCursor = oSheet.createCursorByRange(oUsedRange)
oCursor.GotoEndOfUsedArea(false)
' Obtain the last rows and colums in the "used" range from the cursor.
lastRow = oCursor.RangeAddress.EndRow
lastColumn = oCursor.RangeAddress.EndColumn
' Loop through all cells from the origin (0,0) to the last used column and row.
for row = 0 to lastRow
if (row mod 50 = 0) then
StatusBar "Rounding row " + (row + 1) + " of " + (lastRow + 1) + "..."
endif
for column = 0 to lastColumn
oCell = oSheet.getCellByPosition(column, row)
Select Case oCell.Type
Case com.sun.star.table.CellContentType.VALUE
' Only round value cells. Skip over empty cells, formuls and text.
roundedValue = Round(oCell.Value, placesToRound)
if (roundedValue <> oCell.Value) then
oCell.Value = roundedValue
endif
Case com.sun.star.table.CellContentType.EMPTY
Case com.sun.star.table.CellContentType.TEXT
Case com.sun.star.table.CellContentType.FORMULA
End Select
next column
next row
StatusBar "Rounding complete."
endif
End Sub
' Obtain access to worksheet functions, such as the "round" function.
Sub InitRound
if (oFunction is Nothing) then
oFunction = createUnoService("com.sun.star.sheet.FunctionAccess")
endif
End Sub
' Round the value to the given number of places after the decimal.
Function Round(value, decimalPlaces)
InitRound()
Dim args( 1 to 2 ) As Variant
args(1) = value
args(2) = decimalPlaces
Round = oFunction.callFunction( "round", args() )
End Function
global vStatusBarText as string '=text that is been displayed on the statusbar
sub StatusBar(optional vNewText, optional vAddText) 'set or add text to the statusbar, nothing = clear&reset it.
if isError(vNewText) then
if isError(vAddText) then 'clear statusbar
vStatusBarText=""
else 'add text to the previous statusbar
vStatusBarText=vStatusBarText & vAddText
endif
else
if isError(vAddText) then 'use new text
vStatusBarText=vNewText
else 'use new text and add the other text as well
vStatusBarText=vNewText & vAddText
endif
endif
vStatusBarText=right(vStatusBarText,int(ThisComponent.CurrentController.VisibleArea.Width/150)) 'Select last part that could be displayed.
if isNull(ThisComponent.CurrentController) then exit sub 'Because the last XEventListener-event can't be written to the statusbar, because it's no longer there!
if vStatusBarText="" then 'reset statusbar
ThisComponent.CurrentController.StatusIndicator.Reset
else 'change the text in the statusbar
ThisComponent.CurrentController.StatusIndicator.Start(vStatusBarText,0)
endif
end sub
Function Round2(value, decimalPlaces) as Double
Round2 = Int(value * 10 ^ decimalPlaces + 0.5) / 10 ^ decimalPlaces
'Dim multiplier as Double, bigValue as Double
'multiplier = 10 ^ decimalPlaces
'bigValue = (value * multiplier) + 0.5
'Round2 = CDbl( CLng(bigValue) ) / multiplier
End Function
myDoc = ThisComponent
myDoc.lockControllers()
myDoc.addActionLock()
' --- modify your cells here ---
myDoc.removeActionLock()
myDoc.unlockControllers()
最佳答案
我的计时测试表明您最大的问题是您一次访问一个单元格。我的测试表明有两种方法可以显着增加这种类型的操作。
最有效的方法是使用一些本地工具来做到这一点;例如,将显示样式设置为以特定格式显示,如果可能,将在指定点处舍入显示。
下一个最佳解决方案是分块获取数据并分块更新数据。您用于获取数据的方法将取决于数据的一致性。例如, getDataArray() 和 setDataArray() 可能比一次查看一个单元格快大约 100 倍(至少)。这里有两种不同的可能方法:
getData() 将获取数值数据作为嵌套的值序列(数组中的数组)。
getDataArray() 与 getData() 相同,但可能包含 String 或 Double。
关于performance - 如何加速更新多个单元格的 OpenOffice Calc 宏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12148323/
如何在 Excel 中编写可以在我将打开的任何 Excel 文档上工作(使用快捷方式运行)的宏? 这可能吗? 最佳答案 您需要将宏添加到 Personal.xlsb 以使它们可用于所有 excel 文
我正在研究 problem #74在4clojure.com,我的解决方案如下: (defn FPS [s] (->> (map read-string (re-seq #"[0-9]+"
我还没有完全理解Clojure 箭头宏thread-first -> 和thread-last 宏->> 之间的区别。在阅读 https://clojure.org/guides/threading_
我想将一些调试输出语句插入到大型 C 代码库中。这些调试输出语句将由编译器选项开关控制。 调试输出语句如下所示: #ifdef DEBUG_FLAG Print(someSymbol) #endif
我正在通过宏将代码注入(inject)到 C++ 类中。有没有办法根据访问修饰符的上下文来做到这一点?有点像 #if (we_are_in_public_context) INJECT_PUBLIC_
这应该与 memoize 类似,但有很大不同。虽然 memoize 应该与纯函数一起使用,但它通常对加速 IO 相关函数很有用。 我正在寻找的函数/宏应该表现得像高阶函数。它产生的功能应该: 第一次调
对于下面的代码: let services: [MyServices] = [ MyService(), #if DEBUG DebugService(), #endi
假设我有以下文本文件 name: John Doe description: My name is John Doe and I'm really good at vim! name: John Do
在创建 Excel 宏方面需要帮助。我有一个 Excel 工作表。Excel 工作表不一致。我打算使它统一和结构化。 例如。 A B C
我正在 excel 中设置一个宏,以便在更新单元格时自动发送电子邮件。是否可以在电子邮件正文中包含单元格的内容?例如,如果单元格 G7 已更新,请在电子邮件中包含单元格 B7 的内容?单元格行将是相同
我创建了一个简单的 Excel 工作表。 这是我的宏代码: Sub MyMacro() Sheets("Sheet1").Select A$ = Cells(1, 1) Msg
在 Excel 的 VB 宏中,如何删除所有出现的以某个字符串开头的单词? 例如: 字符串内容为:xxxx $AUD543.43 yyyy 我想搜索以 $AUD 开头的字符串中的任何内容并删除下一个空
我是 Excel 宏的新手.. 谁能告诉我这个宏是做什么的? Sub People_Add_Document() prow = ActiveCell.row num = Cells(p
我对 Excel 中的 VBA 和宏非常陌生。我有一个非常大的 Excel 电子表格,其中 A 列保存日期。我正在尝试删除值小于某个日期的行,这就是我到现在为止的想法。 Sub DELETEDATE(
我在 Excel 2003 中有一个 VBA 对象,当通过流数据获得某些值时,它会触发三个简单的宏。它运行良好。我想打开一个重复的工作表,但具有不同的流数据,并在各自的工作表上触发宏。它现在可以使用,
下面的宏有什么问题?我只想评估一个选项卡中的一个单元格是否大于另一个选项卡中的另一个单元格。然后消息框: Sub Comhouse() If Worksheets("(2.2) TRA works
需要一个简单的 excel 宏的帮助。我在第 1 列 X1 到 X20 中有数据。我想自动将此信息粘贴到 A 列,然后当我更新 X 列中的数字时,我想将此信息粘贴到 B 列,然后再粘贴到 C 列...
我找到了以下代码,效果很好;但是,我必须手动更改月份,以便它转到第二个工作簿的右侧工作表。由于工作表以月为单位,我怎样才能使其自动更改为当月? Sub AlarmSheet() Dim wkb As
很难说出这里问的是什么。这个问题是模棱两可的、模糊的、不完整的、过于宽泛的或修辞的,无法以目前的形式得到合理的回答。如需帮助澄清这个问题以便重新打开它,visit the help center .
我的公司只使用 MS Office 2003 产品,所以我必须坚持下去。由于我的工作性质,我需要使用很多“复制和粘贴”功能。源数据主要来自网站,我将数据粘贴到 Excel 中的单元格中。问题是剪贴板保
我是一名优秀的程序员,十分优秀!