View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Luke M Luke M is offline
external usenet poster
 
Posts: 2,722
Default Data Entry + Validation

1. Does the user only need to enter data in a small/limited amount of cells?
You could try protect sheet, but leave data cells unprotected. User can then
use TAB to quickly go from cell to cell. Other than that, we'd need you to
better describe what you want.

2. You can do this with a helper column. Assume answer cells are B:D, helper
column is E.
In E2, input this:
=IF(COUNTIF(B2:D2,"X")<1,"X","")
Now, select cells B2:D2, data-validation, select list, and choose cell E2

You can then copy these cells down as needed, and eventually hide column E,
for the sake of aethetics.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Neon520" wrote:

Hi There,

1.
Can someone give me suggestion about data entry on a huge Excel Spreadsheet?
What is the best approach to this? I often found that user always got
confused in this rows & rows and columns & columns of spreadsheet that they
need to enter some data?
What would you do to clear the confusion?

2.
Is there a way to do a Data Validation that will validate the data for user
to input an "X" only in one cell out of the three cells in a row?
This is a data collection process after a survey. Ex: there are 3 answers
to a question, and only one answer should be selected.
Is there a way to validate this in Excel. Please keep in mind that there
are more than one questions, and each question has different set of answers.

Thank you,
Neon520