Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have Data in Four Sheet for Data Enter Operator ,Data Operator Enters the
data in all these sheets of accounts for each year ,At the end of year Data Operator Wants to Clear all the data at once ,so i need a Button to clear all the data in all sheet at 1 time,Data Operator should not go to each column n row to delete as data is very big. So ls guide how to place a single button to clear all data in all sheet ?? Husain Nagri |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Add a control button by adding control command toolbox (View - Toolbars -
Command Toolbox). Add Command button to worksheet. Then double click button and add code to the VBA window. Private Sub CommandButton1_Click() Sheets("Sheet1").Cells.ClearContents Sheets("Sheet2").Cells.ClearContents Sheets("Sheet3").Cells.ClearContents End Sub "Husain Nagri" wrote: I have Data in Four Sheet for Data Enter Operator ,Data Operator Enters the data in all these sheets of accounts for each year ,At the end of year Data Operator Wants to Clear all the data at once ,so i need a Button to clear all the data in all sheet at 1 time,Data Operator should not go to each column n row to delete as data is very big. So ls guide how to place a single button to clear all data in all sheet ?? Husain Nagri |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Place shape/clipart over radio button | Excel Discussion (Misc queries) | |||
Place a button on a worksheet and assign a macro to it? | New Users to Excel | |||
Unable to place Settings Toolbar Button | Excel Discussion (Misc queries) | |||
Place the caption of a toggle button into a cell | Excel Worksheet Functions | |||
How do I create a macro button and place anywhere on my sheet? | Excel Discussion (Misc queries) |