View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
JLatham[_2_] JLatham[_2_] is offline
external usenet poster
 
Posts: 19
Default Returning "1" if 3 criteria are met, "0" if not

One way (assumes we're working in row 2)
=IF(AND(LEN(A2)0,LEN(B2)0,LEN(C2)0),1,0)



"wx4usa" wrote in message
oups.com...
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?