Can I use Index/Match to correlate a value given from a nested if formula? For example.
AW15 contains:
AX15 contains:
AW15's formula returns a code "10624" Which should make AX15's value "8.30".
If I overwrite AW15 and manually enter 10624, then the index match function's properly, however, I need the nested if to sort the correct data. Any help would be appreciated.
AW15 contains:
PHP:
=IF(AG15="TRUE",AH15,IF(AND(AK15="",AL15="",AM15="",AN15="",AO15=""),AJ15,IF(AND(AL15="",AM15="",AN15="",AO15=""),AK15,IF(AND(AM15="",AN15="",AO15=""),AL15,IF(AND(AN15="",AO15=""),AM15,IF(AO15="",AN15,AO15))))))
AX15 contains:
PHP:
=INDEX(RANGES!D2:D254,MATCH(AW11,RANGES!C2:C254,0))
AW15's formula returns a code "10624" Which should make AX15's value "8.30".
If I overwrite AW15 and manually enter 10624, then the index match function's properly, however, I need the nested if to sort the correct data. Any help would be appreciated.