10 It Electronic Spreadsheet Notes04
10 It Electronic Spreadsheet Notes04
10 It Electronic Spreadsheet Notes04
Relevant Knowledge
A macro is a saved sequence of commands or keystrokes that are stored for later use. An example of a simple
macro is one that “types” your address. The OpenOffice.org (OOo) macro language is very flexible, allowing
automation of both simple and complex tasks. Macros are especially useful to repeat a task the same way over
and over again.
3. Select cell A3, which contains the number 3, and copy the value to the clipboard.
4. Select the range A1:C3.
5. Use Tools > Macros > Record Macro to start the macro recorder. The Record Macro dialog is displayed
with a stop recording button.
6. Use Edit > Paste Special to open the Paste Special dialog.
7. Set the operation to Multiply and click OK. The cells are now multiplied by 3.
8. Click Stop Recording to stop the macro recorder. The OpenOffice.org Basic Macros dialog opens.
9. Select the current worksheet. For this example, the current Calc worksheet is Untitled 1. Existing
worksheets show a library named Standard. This library is not created until the worksheet is saved, or the
library is needed, so at this point your new worksheet does not contain a library. You can create a new
library to contain the macro, but this is not necessary.
10. Click New Module. If no libraries exist, then the Standard library is automatically created and used. In the
New Module dialog, type a name for the new module or leave the name as Module1.
11. Click OK to create a module named Module1. Select the newly created Module1, enter the macro name
PasteMultiply and click Save.
12. The created macro is saved in Module1 of the Standard library in the Untitled 1 worksheet
Note: Function names are not case sensitive. You can enter =NumberFive() and Calc clearly shows
=NUMBERFIVE().
Save the Calc document, close it, and open it again. Depending on your settings in Tools > Options >
OpenOffice.org > Security > Macro Security, Calc will display one of the warnings shown below. You will need to
click Enable Macros, or Calc will not allow any macros to be run inside the document.
If you choose to disable macros, then when the document loads, Calc can no longer find the function.
When a document is created and saved, it automatically contains a library named Standard. The Standard
library is automatically loaded when the document is opened. No other library is automatically loaded.
Calc does not contain a function named NumberFive(), so it checks all opened and visible macro libraries for
the function. Libraries in OpenOffice.org Macros, My Macros, and the Calc document are checked for an
appropriately named function. The NumberFive() function is stored in the AuthorsCalcMacros library, which is
not automatically loaded when the document is opened.
Use Tools > Macros > Organize Macros > OpenOffice.org Basic to open the OpenOffice.org Basic Macros
dialog shown further down the page. Expand CalcTestMacros and find AuthorsCalcMacros. The icon for a
loaded library is a different color from the icon for a library that is not loaded.
Click the expansion symbol (usually a plus or a triangle) next to AuthorsCalcMacros to load the library. The icon
changes color to indicate that the library is now loaded. Click Close to close the dialog.
Unfortunately, the cells containing =NumberFive() are in error. Calc does not recalculate cells in error unless
you edit them or somehow change them. The usual solution is to store macros used as functions in the Standard
library. If the macro is large or if there are many macros, a stub with the desired name is stored in the Standard
library. The stub macro loads the library containing the implementation and then calls the implementation.
1. Use Tools > Macros > Organize Macros > OpenOffice.org Basic to open the OpenOffice.org Basic Macros
dialog. Select the NumberFive macro and click Edit to open the macro for editing.
TheSum = 0.0
If NOT IsMissing(x) Then
If NOT IsArray(x) Then
If x > 0 Then TheSum =x
Else
For iRow = LBound(x, 1) To UBound (x, 1)
For iCol = LBound(x, 2) To UBound (x, 2)
If x(iRow, iCol) > 0 Then TheSum = TheSum + x(iRow, iCol)
Next
Next
End If
End If
PositiveSum = TheSum
End Function
The macro in Listing 5 demonstrates a couple of important techniques.
1. The argument x is optional. If the argument is not optional and it is called without an argument, OOo prints
a warning message every time the macro is called. If Calc calls the function many times, then the error is
displayed many times.
2. IsMissing checks that an argument was passed before the argument is used.
3. IsArray checks to see if the argument is a single value, or an array. For example, = PositiveSum(7) or =
PositiveSum(A4). In the first case, the number 7 is passed as an argument, and in the second case, the value
of cell A4 is passed to the function.
4. If a range is passed to the function, it is passed as a two-dimensional array of values; for example,
=PositiveSum(A2:B5). LBound and UBound are used to determine the array bounds that are used. Although
the lower bound is one, it is considered safer to use LBound in case it changes in the future.
Note: The macro in Listing 5 is careful and checks to see if the argument is an array or a single argument.
The macro does not verify that each value is numeric. You may be as careful as you desire. The more things
you check, the more robust the macro is, and the slower it runs. Passing one argument is as easy as passing
two: add another argument to the function definition (see Listing 6). When calling a function with two
arguments, separate the arguments with a semicolon; for example, =TestMax(3; -4).
Listing 6. TestMax accepts two arguments and returns the larger of the two.
Function TestMax }(x, y)
If x >= y Then
TestMax = x
Else
TestMax = y
End If
End Function
For i = 0 To oSheets.getCount() - 1
oSheet = oSheets.getByIndex(i)
oCell = oSheet.getCellByPosition (0, 1) ' GetCell A2
TheSum = TheSum + oCell.getValue()
Next
SumCellsAllSheets = TheSum
End Function
Sorting
Sorting data can be automated in Open Office by creating a Macro in Calc. Data can be sorted on a single
column or more than one column. Each time the Macro runs the data gets sorted. Such macros can be written
using code in Open Office. Consider sorting the data in the figure below. First, sort on column B descending and
then column A ascending.