I need help getting a formula to work properly in a cell on a different sheet.
Here's what I need to do.
I need the cell to Look in range 'Frac Report'!E8:CQ8 for the entry "LS" or "LSC" and return the value in the matching cell in row 6.
Also if there is no data entered in range 'Frac Report'!E8:CQ8, I want "0" to be returned in the cell.
I've tried this formula:
but it yelds #N/A in the cell and I cannot have that.
I know there is a formula that will do this, but I am unable to trouble shoot how to get there from the existing broken formula I have already.
Any help would greatly appreciated!
Here's what I need to do.
I need the cell to Look in range 'Frac Report'!E8:CQ8 for the entry "LS" or "LSC" and return the value in the matching cell in row 6.
Also if there is no data entered in range 'Frac Report'!E8:CQ8, I want "0" to be returned in the cell.
I've tried this formula:
Code:
=IF('Frac Report'!$E$8:$CQ$8="LS",MATCH("LS",'Frac Report'!$E$8:$CQ$8,6),MATCH("LSC",'Frac Report'!$E$8:$CQ$8,6))
but it yelds #N/A in the cell and I cannot have that.
I know there is a formula that will do this, but I am unable to trouble shoot how to get there from the existing broken formula I have already.
Any help would greatly appreciated!