I have given an explanation on the attached sheet.
What I basically want to do is for the formula to look at two different cells and when both have no data in, give a blank UNTIL both have data in again.
I have given an explanation on the attached sheet.
What I basically want to do is for the formula to look at two different cells and when both have no data in, give a blank UNTIL both have data in again.
Last edited by mrcois; 06-16-2010 at 01:24 PM.
try
=IF(OR(A8="",C8=""),"",SUM(A8/C8))
Then again, you don't need the "SUM" around the division. SUM() does not add anything to the formula, just uses computing power.
=IF(OR(A8="",C8=""),"",A8/C8)
is more efficient and less typing.
cheers
Thanks, that worked 100%...
I have uploaded another example. If you can help me, I'll will appreciate it...
This will work:
=IF(AND(B8="",A8="",A3="",B3=""),NA(),SUM(A3:B3,A8:B8))
Tho what you asked for in the workbook isn't exactly what your title asks for since you said cell to show blank....
Yes sorry, I did use the blank option previously in this thread.
Thanks for the formula hey, it works 100%...
Dulanic's formula could be shortened to
=IF(count(B8,A8,A3,B3)<4,NA(),SUM(A3:B3,A8:B8))
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks