On Thu, 9 Jun 2005 03:40:04 -0500, andrewm
<andrewm.1qcqac_1118307935.613@excelforum-nospam.com> wrote:

>
>I am doing a roster and would like to know how to do a function to make
>sure cells certain cells have names present
>eg. cells a1 : a5 should have names present - is there a function in
>say a6 that if all cells (a1:a5) have a name present a6 = true, and if
>any cell has no name present a6 = false (or any other text)
>I want this to make sure all cells are filled in with a name
>andrewm


If the cells can only contain names or be blank, something you can ensure using
data validation, then

=COUNTA(A1:A5) = 5

should do what you request.
--ron