a macro ?

eddieque

New Member
Joined
Feb 18, 2002
Messages
26
I created a workbook for a class project. I have navigation buttons that move me thru it forward and backward. What I would like to do is create a macro for a button that closes excel and doesnt ask for the save prompt.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Try:

Code:
sub clsIt()
Dim myAp As Excel.Application
thisworkbook.close false
myAp.quit
end sub
_________________
Cheers,<font size=+2><font color="red"> Nate<font color="blue">O</font></font></font>
This message was edited by NateO on 2002-04-04 17:01
 
Upvote 0
Thanks for the help. However it doesnt close Excel. It closes the Workbook just fine but not the program. Any suggestions about that ?
 
Upvote 0
eddieque,

What do you mean you have a macro that move you forward and backward through your workbook? You mean go from one worksheet to the next and back?

Care to share the code for that?
 
Upvote 0

Forum statistics

Threads
1,213,511
Messages
6,114,054
Members
448,543
Latest member
MartinLarkin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top