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

enter image description here

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:

  1. right-click tab name near bottom of excel window
  2. select view code - brings vbe window
  3. 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:

  1. bring vbe windows above
  2. clear code out
  3. 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

Popular posts from this blog

android - MPAndroidChart - How to add Annotations or images to the chart -

javascript - Add class to another page attribute using URL id - Jquery -

firefox - Where is 'webgl.osmesalib' parameter? -