I give up! How can I convert the following 1-2-3 formula for my Excel sheet:
@IF(EH10<>""#AND#EF10<>""#AND#EH10-EF10<.0001,1,"")
I'm thinking I need multiple AND statements, but can't get it to work. Any
help at all would be appreciated.
I give up! How can I convert the following 1-2-3 formula for my Excel sheet:
@IF(EH10<>""#AND#EF10<>""#AND#EH10-EF10<.0001,1,"")
I'm thinking I need multiple AND statements, but can't get it to work. Any
help at all would be appreciated.
You need
IF(AND(EH10<>"",EF10<>"",EH10-EF10<.0001),1,"")
Originally Posted by mckzach
=if(and(EH10<>"",EF10<>"",EH10-EF10<.0001),1,"")
"mckzach" wrote:
> I give up! How can I convert the following 1-2-3 formula for my Excel sheet:
>
> @IF(EH10<>""#AND#EF10<>""#AND#EH10-EF10<.0001,1,"")
>
> I'm thinking I need multiple AND statements, but can't get it to work. Any
> help at all would be appreciated.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks