Excel create date stamp when an cell is updated -
i have excel sheet has 'last updated' field in column n. need make automatic update todays date, whenever status in column h changed row.
can on simple solution?
thank in advance! kriss
include following event macro in worksheet code area:
private sub worksheet_change(byval target range) dim rng range, r range, h range set h = range("h:h") set rng = intersect(h, target) if rng nothing exit sub application.enableevents = false each r in rng cells(r.row, "n").value = date next r 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