Function Macros Do Not Require an Argument FunctionLast reviewed: November 3, 1994Article ID: Q68059 |
The information in this article applies to:
SUMMARY"Running Microsoft Excel," by the Cobb Group, states on page 598 that
...every function macro must include at least one ARGUMENT function.This is incorrect. There needs to be one ARGUMENT function for each argument that the function macro should accept, but an argument is not required. For example, the following function macro is correct:
A1: Today A2: =choose(weekday(now()),"Sun","Mon",...,"Sat") A3: =return(A2)Entering "=Macrosheet!Today()" in a cell on a worksheet returns the current day of the week in text. (Note: this is true for version 5.0 macro sheets, but not modules.)
|
KBCategory: kbother
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |