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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top