I am trying to do the following:
- For each Row
- If Cell A contains text "abc" then get value on column B and
- if value on Column B is > than 0:03:00 return 0.9
- else if value on Column B is < 0:03:00 and > 00:01:00 return 0.6
- else return 0.3
- Sum the returned value with all the others.
The result should be something like:
=IF(ISNUMBER(FIND("abc",INDIRECT(""&$A16&""&"!$D$2:$D"))),IF(INDIRECT(""&$A16&""&"!$D$2:$D")>"00:0300,???,???),?etc??)
??? are the missing parts. Also INDIRECT() could be removed for testing, but the problem is that ??? part.I have no idea how to get the result of the IF statement and how to process it. I suppose I don't understand how to work with columns.