Ask for date

  • Thread starter Thread starter Carole O
  • Start date Start date
C

Carole O

I receive a file (bi-weekly) which is then sorted by Macro into various
worksheets and sent to Departments for their research and response. How
could I get a message to appear which would ask me for the date the
worksheets will be sent to the departments and populate it into the database
during the sort process?

TIA
Carole O
 
Assuming that you would like this to be done as part of the process run by
your "sorting" macro........that macro itself would have to be modified.
Whoever wrote the original macro should be able to incorporate this new
function.

Vaya con Dios,
Chuck, CABGx3
 
I recorded the 'sorting' macro. I know there is a way to do this, I just
either have forgotten or don't know how. After the macro is started, it
should pop up a question "What is the send date?" and give the person running
the macro an opportunity to respond. The macro will then write that date to
the 'send date' column in all the sorted files.

Hope this clarifies what I am looking for.

Carole O
 
You want InputBox, as in:

SendDate = InputBox("What is the send date?, , <default if wanted>)
 

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