excel - Delete cell content after enter key? -
excel need delete type right after press enter possible? might easy don't know how to.
yes using data need send data , delete results data in. have far: "=countif(b2;c8)" if b2 matches c8 adds 1 , need delete b2 automatically enter new value.
place following event macro in worksheet code area:
private sub worksheet_change(byval target range) application.enableevents = false target.clearcontents application.enableevents = true end sub
because worksheet code, easy install , automatic use:
- right-click tab name near bottom of excel window
- select view code - brings vbe window
- paste stuff in , close vbe window
if have concerns, first try on trial worksheet.
if save workbook, macro saved it. if using version of excel later 2003, must save file .xlsm rather .xlsx
to remove macro:
- bring vbe windows above
- clear code out
- close vbe window
to learn more macros in general, see:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
and
http://msdn.microsoft.com/en-us/library/ee814735(v=office.14).aspx
to learn more event macros (worksheet code), see:
http://www.mvps.org/dmcritchie/excel/event.htm
macros must enabled work!
Comments
Post a Comment