Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Excel 2003 Using spreadsheet in modeling application. Need to reenter 14
new parameters frequently. They are contiguous. Would like to hit one key and have all input fields reset to blank or zero. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You could drop a button from the Forms toolbar on the worksheet that has a macro
assigned to it. Option Explicit Sub ClearZeroCells() with activesheet .range("a1,b9,c3:c5").clearcontents .range("a3,b12,d1:d5").value = 0 end with end sub If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm Marshall wrote: Excel 2003 Using spreadsheet in modeling application. Need to reenter 14 new parameters frequently. They are contiguous. Would like to hit one key and have all input fields reset to blank or zero. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
CLear Data Entry Form Fields | Excel Discussion (Misc queries) | |||
How do I put a delete button on excel that will clear the fields? | Excel Worksheet Functions | |||
A Fix - Pivottable - Added calculated fields and now can't clear pivot | Excel Programming | |||
How do I Clear old Pivot Table Fields that no longer exist | Excel Discussion (Misc queries) | |||
How do I Clear ALL unprotected data entry fields in a protected sh | Excel Programming |