require cell to edit

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I'm actually working on Excel questionnaires. So I have lots of questions
that need to be filled in the correct order. I would like to lock or disable
every next cells until the previous answer is not filled. If possible without
using Macros or VBA

Thank you very much.
 
You could use custom validation. Data -> Validation -> Custom

In the formula add something like the cell above <> "" (for example
highlight cells A2:A10 and add validation =A1<>"". Be sure to uncheck ignore
blanks.

This means that the cell above the current cell must be filled in before you
can fill in the current cell. First A1 then A2 then A3...
 
You could use custom validation. Data -> Validation -> Custom

In the formula add something like the cell above <> "" (for example
highlight cells A2:A10 and add validation =A1<>"". Be sure to uncheck ignore
blanks.

This means that the cell above the current cell must be filled in before you
can fill in the current cell. First A1 then A2 then A3...
 
Thanks for the answer, this solve the main part of the problem. The only
remaining problem is that I already used validation to provide in-cell
drop-down lists for some question, so I think this is not possible to use
those 2 validation types at the same time. Is there another way to do that?
Or maybe another way to provide the drop down list? As I said in the first
question, I wouldn't like to use VB controls.
 
Thanks for the answer, this solve the main part of the problem. The only
remaining problem is that I already used validation to provide in-cell
drop-down lists for some question, so I think this is not possible to use
those 2 validation types at the same time. Is there another way to do that?
Or maybe another way to provide the drop down list? As I said in the first
question, I wouldn't like to use VB controls.
 

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