Edit my Macro Please
Here is one that I have used:
Sub MultiBeep(NumBeeps)
For Counter = 1 To NumBeeps
Beep
Run "BeepTime"
Next Counter
End Sub
You use it like a function. If you want 2 beeps then:
Sub test()
MultiBeep 2
End Sub
For three beeps
Sub test2()
MultiBeep 3
End Sub
"Gerard Sanchez" wrote:
'Hi,
'Currently I am using the function below to and called on whenever there is
a discrepancy between two values on an IF formula.
Function beepNow()
Beep
End Function
'I was wondering if there is a way for me to do 2 beeps aside from the 1
beep above I can call whenever certain cells changes its value.
This would be applied to the whole workbook.
'Any input would be very much appreciated!
|