Excel VBA - Automatic Date

  • Thread starter Thread starter jbchrist
  • Start date Start date
J

jbchrist

I would like to create a function or macro to automatically enter th
date when a number in an adjacent cell is entered.

I am new to VBA and haven't been able to figure this out yet. An
ideas? TH
 
Use this worksheet change event idea
if isnumberic(target) then target.offset(0,1)=date
 
Back
Top