View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Returning "1" if 3 criteria are met, "0" if not

Another:

=--(counta(a1:c1)=3)
or
=if(counta(a1:c1)=3,1,0)



wx4usa wrote:

I have 3 columns with misc data. Column A is a date, column B is an
invoice number and C is an expense report number. If all 3 columns
have data entered, I would like to have a formula return the number
"1" if not, "0"

How do I do this?


--

Dave Peterson