Pop up calculator possible ?

  • Thread starter Thread starter ORLANDO VAZQUEZ
  • Start date Start date
O

ORLANDO VAZQUEZ

Is there any way to have a popup calculator in an excel spreadsheet when you,
for example, click a button ?
 
hi
you can have the builtin microsoft calculator pop up with this code...
Sub CalcPopup1()
Application.ActivateMicrosoftApp Index:=0
End Sub

you could drop a command button on the sheet and put it in the
commandbutton_click event or attach it to a custom icon.
works in 2003. untested in 2007.

regards
FSt1
 
That is great! Thank you.


--
Orlando Vazquez


FSt1 said:
hi
you can have the builtin microsoft calculator pop up with this code...
Sub CalcPopup1()
Application.ActivateMicrosoftApp Index:=0
End Sub

you could drop a command button on the sheet and put it in the
commandbutton_click event or attach it to a custom icon.
works in 2003. untested in 2007.

regards
FSt1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top