Excel: Worksheet Formula to Beep and Display an Alert BoxLast reviewed: July 12, 1996Article ID: Q86011 |
The information in this article applies to:
SUMMARYThe following formulas, when entered on a spreadsheet, will produce a beep and display an alert box if the specified condition occurs.
16-bit versions of Microsoft Excel (3.x, 4.x, 5.x for Windows) -------------------------------------------------------------- =IF(CONDITION,TEXT(CALL("USER.EXE","MessageBeep",">H",0)+CALL("USER .EXE","MessageBox","HHCCH",0,"MESSAGE","TITLE",),""),"") 32-bit versions of Microsoft Excel (5.0 for Windows NT, 7.0) ------------------------------------------------------------ =IF(CONDITION,TEXT(CALL("USER32","MessageBeep",">H",0)+CALL("USER32", "MessageBoxA","HHCCH",0,"MESSAGE","TITLE",),""),"")Where:
MORE INFORMATIONThe CALL statements call routines are part of the Windows DLL files USER.EXE (16-bit) and USER32.DLL (32-bit). Because the CALL statement can be used in this form on a Microsoft Excel worksheet it is not necessary to use a macro sheet or Visual Basic module. The message in the alert box may contain multiple lines by typing the first line of MESSAGE text and then pressing ENTER while holding down the ALT key.
REFERENCES"Microsoft Excel Function Reference," version 3.0, pages 24-25, 125-126 and 234-235 "Microsoft Excel Function Reference," version 4.0, pages 42-43, 225-226 and 431-432 Microsoft Windows Software Developers Kit
|
KBCategory: kbusage
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |