Advanced macro to dial a phone number
Select a phone number in your
spreadsheet & press CTRL D to dial.
=DIAL()
=RETURN()

Call the METZ Software Sales Number
1-206-641-4525

DIAL
=WORKSPACE(,,,,,,,FALSE)
Establish connection with METZ Phones
=INITIATE("PHONES","DIAL")
Send Phones the contents of the active cell
which should be a phone number
=EXECUTE($A$13,"[DIAL("&ACTIVE.CELL()&")]")
Have to give modem a chance to dial,
may need more time than 6 seconds.
=WAIT(NOW()+"00:00:06")
Don't forget to hang up
=EXECUTE($A$13,"[HANGUP]")
Optional command to close Phones
=EXECUTE($A$13,"[CLOSE]")
Terminate connection
=TERMINATE($A$13)
=HALT()






