Is it possible to replace all formulas containing IFERROR, INDEX and MATCH formulas with XLOOKUP?
For example:
this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);10);0)"
to this "XLOOKUP(A112; TB!A3:A9999; TB!K3:K9999; 0)" <- (I assume this is a correct 1:1 replacement of the above)
and this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);11);0)"
to "XLOOKUP(A112; TB!A3:A9999; TB!L3:L9999; 0)"
and this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);2);0)"
to "XLOOKUP(A112; TB!A3:A9999; TB!C3:C9999; 0)"
and this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);3);0)"
to "XLOOKUP(A112; TB!A3:A9999; TB!D3:D9999; 0)"
and this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);6);0)"
to "XLOOKUP(A112; TB!A3:A9999; TB!G3:G9999; 0)”
and this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);7);0)"
to "XLOOKUP(A112; TB!A3:A9999; TB!H3:H9999; 0)"
Certain cells in the workbook contain multiple formulas like the above being added or subtracted.
A112 can be any cell or even a specific reference from TB!A3:A9999 such as "IFERROR(INDEX(TB!B3:L9999;MATCH("90.00";TB!A3:A9999;0);7);0)" or "IFERROR(INDEX(TB!B3:L9999;MATCH(90;TB!A3:A9999;0);7);0)". Some of MATCH's lookup_values are in quotes "" and some are not and this is necessary for INDEX-MATCH to work on this data. I do not know how to otherwise fix this issue that exists when the data codes lack period separators and exist as numerical only (note that 90.00<>90 and both will exist simulaniously).
Please excuse my formula separators, but I have “;” instead of “,” because of regional settings.
Is there a way to replace all formulas?
Thank you.
For example:
this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);10);0)"
to this "XLOOKUP(A112; TB!A3:A9999; TB!K3:K9999; 0)" <- (I assume this is a correct 1:1 replacement of the above)
and this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);11);0)"
to "XLOOKUP(A112; TB!A3:A9999; TB!L3:L9999; 0)"
and this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);2);0)"
to "XLOOKUP(A112; TB!A3:A9999; TB!C3:C9999; 0)"
and this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);3);0)"
to "XLOOKUP(A112; TB!A3:A9999; TB!D3:D9999; 0)"
and this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);6);0)"
to "XLOOKUP(A112; TB!A3:A9999; TB!G3:G9999; 0)”
and this "IFERROR(INDEX(TB!B3:L9999;MATCH(A112;TB!A3:A9999;0);7);0)"
to "XLOOKUP(A112; TB!A3:A9999; TB!H3:H9999; 0)"
Certain cells in the workbook contain multiple formulas like the above being added or subtracted.
A112 can be any cell or even a specific reference from TB!A3:A9999 such as "IFERROR(INDEX(TB!B3:L9999;MATCH("90.00";TB!A3:A9999;0);7);0)" or "IFERROR(INDEX(TB!B3:L9999;MATCH(90;TB!A3:A9999;0);7);0)". Some of MATCH's lookup_values are in quotes "" and some are not and this is necessary for INDEX-MATCH to work on this data. I do not know how to otherwise fix this issue that exists when the data codes lack period separators and exist as numerical only (note that 90.00<>90 and both will exist simulaniously).
Please excuse my formula separators, but I have “;” instead of “,” because of regional settings.
Is there a way to replace all formulas?
Thank you.