Formula N/A Error

Glasgowsmile

Active Member
Joined
Apr 14, 2018
Messages
280
Office Version
  1. 365
Platform
  1. Windows
Good Afternoon,

I'm getting an error with my formula... but only sometimes not every time.
Code:
=INDEX(DlyRateCodes1!$D$27:$K$455,MATCH($CD11,DlyRateCodes1!$B$27:$B$455,0),MATCH(H$1000,DlyRateCodes1!$D$26:$Z$26,0))

If you could give me an idea of what's wrong, that would be great. I know this is vague but I can't exactly share the spreadsheet.

I tried to evaluate the process and see if I could pin-point the issue. After the first step it throws a #N/A into the formula

Before starting Evaluation:
https://imgur.com/SchoZoZ

You'll see the #N/A error in the formula now:
https://imgur.com/8NDX7QH

After change the exact match to less or greater than, it at least doesn't give me an error message but exact is what I need and what it's trying to match does exist within that array so I don't understand why it's missing it
 
Last edited:

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Good Afternoon,

I'm getting an error with my formula... but only sometimes not every time.
Code:
=INDEX(DlyRateCodes1!$D$27:$[COLOR=#ff0000][B]K[/B][/COLOR]$455,MATCH($CD11,DlyRateCodes1!$B$27:$B$455,0),MATCH(H$1000,DlyRateCodes1!$D$26:$[B][COLOR=#ff0000]Z[/COLOR][/B]$26,0))

If you could give me an idea of what's wrong, that would be great. I know this is vague but I can't exactly share the spreadsheet.

I tried to evaluate the process and see if I could pin-point the issue. After the first step it throws a #N/A into the formula

Before starting Evaluation:
https://imgur.com/SchoZoZ

You'll see the #N/A error in the formula now:
https://imgur.com/8NDX7QH
Have you tried making the column letter Z (in red) the same as the last column (K) in the array? The formula can't find something that's beyond the last column of the array.
 
Last edited:
Upvote 0
Have you tried making the column letter Z (in red) the same as the last column (K) in the array? The formula can't find something that's beyond the column of the array.

Good Point, I corrected that but weirdly that wasn't the issue.

I found the problem to be $CD11 -- that cell was using =Trim($A2), because I couldn't get it to work referencing A2 directly due to the formula it was using. (posted below)
Code:
='ActvRateCat SumRpt'!F18

Trim worked no problem, unless A2 was a number.

So if A2 said VA -- No problem.
If A2 said 23 then it would error out, though I don't understand why.

I changed it to =A2 instead and that works fine.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,267
Members
449,075
Latest member
staticfluids

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