ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Delete all data on a worksheet (https://www.excelbanter.com/excel-worksheet-functions/173792-delete-all-data-worksheet.html)

shiro

Delete all data on a worksheet
 
Hi all,
I want to delete all dat in the sheet1 when I close the workbook,
but not understand to write VBA code for excel.Is it possible ?
How to write it?

Many thank's.



Mike H

Delete all data on a worksheet
 
Hi,

Are you absolutely sure you want to delete everyting? Warning this will
delete everything in Sheet1 and I mean everything so use it with caution and
try it on a backup wotkbook first. Alt + F11 to open VB editor. Double click
'This workbook' and paste the code in.

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Sheets("Sheet1").UsedRange.ClearContents
End Sub

Mike

"shiro" wrote:

Hi all,
I want to delete all dat in the sheet1 when I close the workbook,
but not understand to write VBA code for excel.Is it possible ?
How to write it?

Many thank's.




Gord Dibben

Delete all data on a worksheet
 
Right-click on the Excel logo left of "File" on the main menu.

Select "View Code"

Paste this into that module.

Private Sub Workbook_BeforeClose(Cancel As Boolean)
With ThisWorkbook
.Worksheets("Sheet1").Cells.ClearContents
.Save
End With
End Sub


Gord Dibben MS Excel MVP

On Mon, 21 Jan 2008 18:34:51 +0700, "shiro" wrote:

Hi all,
I want to delete all dat in the sheet1 when I close the workbook,
but not understand to write VBA code for excel.Is it possible ?
How to write it?

Many thank's.



Gord Dibben

Delete all data on a worksheet
 
"logo" should have been "icon"


Gord

On Mon, 21 Jan 2008 10:48:31 -0800, Gord Dibben <gorddibbATshawDOTca wrote:

Right-click on the Excel logo left of "File" on the main menu.

Select "View Code"

Paste this into that module.

Private Sub Workbook_BeforeClose(Cancel As Boolean)
With ThisWorkbook
.Worksheets("Sheet1").Cells.ClearContents
.Save
End With
End Sub


Gord Dibben MS Excel MVP

On Mon, 21 Jan 2008 18:34:51 +0700, "shiro" wrote:

Hi all,
I want to delete all dat in the sheet1 when I close the workbook,
but not understand to write VBA code for excel.Is it possible ?
How to write it?

Many thank's.



shiro

Delete all data on a worksheet
 
Many thank's Sirs.
Workgreat.


"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
"logo" should have been "icon"


Gord

On Mon, 21 Jan 2008 10:48:31 -0800, Gord Dibben <gorddibbATshawDOTca

wrote:

Right-click on the Excel logo left of "File" on the main menu.

Select "View Code"

Paste this into that module.

Private Sub Workbook_BeforeClose(Cancel As Boolean)
With ThisWorkbook
.Worksheets("Sheet1").Cells.ClearContents
.Save
End With
End Sub


Gord Dibben MS Excel MVP

On Mon, 21 Jan 2008 18:34:51 +0700, "shiro" wrote:

Hi all,
I want to delete all dat in the sheet1 when I close the workbook,
but not understand to write VBA code for excel.Is it possible ?
How to write it?

Many thank's.






All times are GMT +1. The time now is 02:09 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com