Sign in to join the conversation:
Hi all,
I am trying to add a range of cells on condition that it does not contain any value that is equal to/or less than 0. for instance (12,45,24,0,65) should equal 0 and (12,24,24,10,65) give me 135.
anyone to help?
Musa,
I think I've got a solution for you that you'll want to experiment with. In this example the Sum of the numbers is in Column 1 and the other 5 numbers are in columns 2 through 6 respectively.
=IF(AND([Column2]1 > 0, [Column3]1 > 0, [Column4]1 > 0, [Column5]1 > 0, [Column6]1 > 0), SUM([Column2]1:[Column6]1), 0)
HI All, I have a formula that i have got working - only issue i have is I have run out of cross reference "space" and cannot add my last spring to complete my function is there anther way to do this Source sheet OR date UP date Site Target sheet Required date Updated Date Site i need to return source sheet UP date, when OR…
I want to pull through the task name in one sheet where the check box at row is checked into another target sheet. This is what I though the formula would be but I get #UNPARSEABLE as the error. =INDEX(COLLECT({Task name}, {Stage check box}@row , 1)) Um, help please?
Hello, I'm trying to create a formula to count / sum the number of times a cell contains some txt within a date / year range. The formula works for regular cells which contain only one piece of txt. However I'm trying to count from a cell which has multiple entries. I'm sure this is an easy one. Can anyone help please?…