convert formula from 2007 to 2003

blkane

New Member
Joined
Nov 18, 2011
Messages
47
Hi, Not eveyone in my office has moved off of Excel 2003. I need to share a workbook that has formulas that aren't in 2003. I'm looking for some help with converting these formulas to a 2003 equivalent. Thanks in advance.

I have an array formula that is indexing the range "Trend" matching specific fields and returning the value. If it doesn't find any matches, it returns a zero instead of an error. The problem is the "IFERROR". Can someone suggest a modification to the formula that is compatible with Excel 2003?

{=ROUND(IFERROR(INDEX(Trend,MATCH($B5&$C5,Cust_Name&Metric_vol,0),MATCH(F$3,Month,0)),0),0)*$E5}
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Code:
=ROUND(IF(ISERROR(INDEX(Trend,MATCH($B5&$C5,Cust_Name&Metric_vol,0),MATCH(F$3,Month,0))),0,INDEX(Trend,MATCH($B5&$C5,Cust_Name&Metric_vol,0),MATCH(F$3,Month,0))),0)*$E5
 
Upvote 0
The people on this forum never disappoint. Thank you very very much. It works beautifully.
 
Upvote 0

Forum statistics

Threads
1,214,376
Messages
6,119,172
Members
448,870
Latest member
max_pedreira

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top