I've created a formula to check if a cell contains "3". If it does contain "3" then it returns the value of a cell located 2 rows down.
I've then duplicated this formula using + so it can add the values of all the cells found that contain "3".
The formula is:
=IF(ISNUMBER(SEARCH("3",'Block 1'!E9)),'Block 1'!E11,)+IF(ISNUMBER(SEARCH("3",'Block 1'!E13)),'Block 1'!E15,)+IF(ISNUMBER(SEARCH("3",'Block 1'!E17)),'Block 1'!E19,)+IF(ISNUMBER(SEARCH("3",'Block 1'!E21)),'Block 1'!E23,)
I need to consolidate this as currently it only searches 4 cells, I in fact need to to search and add 55 cells.
Is it possible to consolidate this formula into something a little more elegant?
Many Thanks.
I've then duplicated this formula using + so it can add the values of all the cells found that contain "3".
The formula is:
=IF(ISNUMBER(SEARCH("3",'Block 1'!E9)),'Block 1'!E11,)+IF(ISNUMBER(SEARCH("3",'Block 1'!E13)),'Block 1'!E15,)+IF(ISNUMBER(SEARCH("3",'Block 1'!E17)),'Block 1'!E19,)+IF(ISNUMBER(SEARCH("3",'Block 1'!E21)),'Block 1'!E23,)
I need to consolidate this as currently it only searches 4 cells, I in fact need to to search and add 55 cells.
Is it possible to consolidate this formula into something a little more elegant?
Many Thanks.