• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Require to add a comment

Tileplayer

New Member
I hope somebody can help on this.


I'm preparing a file for the evaluation of several items. For every item evaluated (in one cell), the user must enter the reason of the evaluation (in another cell).

How can I do this? I don't want to have any item evaluated without the reason for the evaluation.


Thanks in advance for your help


Rafael
 
You could use conditional formatting to flag the cell. Let's say the item is in col A, and the reason needs to be in col B. With cell B2 selected, CF formula would be:

=AND($A2<>"",ISBLANK($B2))

Pick a nice format, such as a red fill.

This should flag any cells that either have an item w/ no reason given.
 
Thanks for your answer, but what I need is something that force the user to enter a comment and not allow him to go forward until the information is given.


Thanks.
 
You will have to go VBA route e.g. using Userform or Sheet based event which will control the user input.


However, it will require efforts. Especially if you don't have background in VBA.
 
Back
Top