Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
e e is offline
external usenet poster
 
Posts: 18
Default Clearing cells in a range upon exitting Excel

Like the title says, I am working on a project in Excel that requires that
the data entered in a range be cleared. I tried the following code in the
deactivate event of the worksheet:

Private Sub Worksheet_Deactivate()
Range("b18:l40").ClearContents
End Sub

This works fine if I switching worksheets but I would like the clear to
occur when closing Excel. I did not see a "OnClose" type event where I could
put the code for clearing the selection.

Thanks in advance.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,836
Default Clearing cells in a range upon exitting Excel

Should be like this:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Call...your macro name
End Sub

I use this all the time. Something very simple; effective too!
Place the code in 'ThisWorkbook'.

Regards,
Ryan---

--
RyGuy


"E" wrote:

Thanks that worked great. A little different than Access.

E

"Rick Rothstein" wrote:

Use the ThisWorkbook code window instead of the Worksheet's code window
(either pick it from the Project Window or, from any worksheet, right click
the icon immediately to the left of the File menu item and click View Code
from the popup menu that appears). Select Workbook from the left hand drop
down and then select the BeforeClose event from the right hand drop down and
put your code there.

--
Rick (MVP - Excel)


"E" wrote in message
...
Like the title says, I am working on a project in Excel that requires that
the data entered in a range be cleared. I tried the following code in the
deactivate event of the worksheet:

Private Sub Worksheet_Deactivate()
Range("b18:l40").ClearContents
End Sub

This works fine if I switching worksheets but I would like the clear to
occur when closing Excel. I did not see a "OnClose" type event where I
could
put the code for clearing the selection.

Thanks in advance.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Deleting/Clearing duplicate range of cells Steve Excel Worksheet Functions 0 April 28th 10 03:59 PM
Clearing cells in a range upon exitting Excel Rick Rothstein Excel Programming 1 January 14th 09 08:16 PM
Clearing cells in a range upon exitting Excel Mike H Excel Programming 0 January 14th 09 07:25 PM
Clearing cells in a range upon exitting Excel Don Guillett Excel Programming 0 January 14th 09 07:24 PM
Clearing the Contents of a range of cells David A. Excel Programming 2 November 8th 07 05:59 PM


All times are GMT +1. The time now is 04:44 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"