Not a trick question, what is wrong with this formula

bmpreston

Board Regular
Joined
Jun 18, 2016
Messages
120
Office Version
  1. 365
Platform
  1. MacOS
So I have a column of formulas. I clicked and dragged to autofill the formulas and at some random point, it stopped working.

Can anyone see a difference?

=IF(A123=0,0,VLOOKUP(EQUIPMENT!A123,EQUIPMENT!$L$3:$P$2888,5)*B123)


This is the last one that worked

=IF(A122=0,0,VLOOKUP(EQUIPMENT!A122,EQUIPMENT!$L$3:$P$2888,5)*B122)

It seems as if something on the EQUIPMENT page is different. But nothing seemingly changes.

Thanks
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Do you get an error ?
What is in A123 and EQUIPMENT!A123 and B123 ?
Do they compare to what is in the previous row / s ?
 
Upvote 0
Maybe the formula is perfect?
Maybe the data is the issue?
Maybe more info is needed?
 
Upvote 0
So this is a grab without grids, but that's A120, B, C, D

A is a formula, it just points back to EQUIPMENT!A*

10058262600FLEXIDOME IP MICRO 5000 $ -
10058456700PTZ CONTROL NO VIDEO SCREEN $ -
10058684900CAMERA FLEXIDOME 960H D/N WDR (REPLACES VDN-498V03-21S) $ -
10058732322CABLE CAT 5E JUMPER 3FT YELLOW $ -


<colgroup><col><col><col><col><col></colgroup><tbody>
</tbody>


Basically, everything on this page is a VLOOKUP back to the EQUIPMENT tab, and on the EQUIPMENT tab, it's just a column of pricing. I'm so confused why one works and then some don't.

Thanks
 
Upvote 0
You didn't say what "stopped working means". Meanwhile, is EQUIPMENT!$L$3:$L$2888 sorted to be in ascending order? If not you can expect some strange results b/c you have taken the default value of the range_lookup rather than asking for an exact match.

VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
If range_lookup is either TRUE or is omitted, an exact or approximate match is returned. If an exact match is not found, the next largest value that is less than lookup_value is returned. Important If range_lookup is either TRUE or is omitted, the values in the first column of table_array must be placed in ascending sort order; otherwise, VLOOKUP might not return the correct value.

 
Upvote 0
That is really interesting about the being sorted. I never knew that all the numbers in a lookup must be in numerical order. It is to my best knowledge Ascending order. Regarding the results, I just get a 0, since my IF statement is designed to give a zero if the A cell is empty or null.

Interestingly if I process the Evaluate Formula, it sees the first IF function as false, as it should. A123 IS NOT 0, then it processes the VLOOKUP, but still gives me a zero.
 
Upvote 0
That is really interesting about the being sorted. I never knew that all the numbers in a lookup must be in numerical order. It is to my best knowledge Ascending order. Regarding the results, I just get a 0, since my IF statement is designed to give a zero if the A cell is empty or null.

Interestingly if I process the Evaluate Formula, it sees the first IF function as false, as it should. A123 IS NOT 0, then it processes the VLOOKUP, but still gives me a zero.
If you are uncertain, and are actually looking for an exact match to you're lookup value, try it this way:

Rich (BB code):
=IF(A123=0,0,VLOOKUP(EQUIPMENT!A123,EQUIPMENT!$L$3:$P$2888,5,0)*B123)
The red 0 tells Excel you are looking for an exact match (in which case the first column of values in the lookup table do not have to be sorted in any way). If you leave that argument out (as your OP does), then it defaults to 1 which requires the ascending values.
 
Upvote 0
If you are uncertain, and are actually looking for an exact match to you're lookup value, try it this way:

Rich (BB code):
=IF(A123=0,0,VLOOKUP(EQUIPMENT!A123,EQUIPMENT!$L$3:$P$2888,5,0)*B123)
The red 0 tells Excel you are looking for an exact match (in which case the first column of values in the lookup table do not have to be sorted in any way). If you leave that argument out (as your OP does), then it defaults to 1 which requires the ascending values.

That works! Amazing. Never knew about exact matching.

Thanks!
 
Upvote 0

Forum statistics

Threads
1,214,632
Messages
6,120,649
Members
448,975
Latest member
sweeberry

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