stop in cell

  • Thread starter Thread starter Fernando Duran
  • Start date Start date
Hi

Using a worksheet open, or sheet activate, autoexec macro
or some other event, enter the following.

If IsEmpty(Range("c3")) Then
Do
getit = InputBox("what data is going into cell
C3", , "Something")
Loop Until Len(getit) > 0

Range("c3").Value = getit
End If

Tony
 

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