VLookup Problem with Fomulated Lookup Value

Eb0la11

Board Regular
Joined
Apr 2, 2007
Messages
55
Office Version
  1. 365
I have this as my VLookup formula:

=VLOOKUP($B24,'Reference Tables'!$A$2:$B$100,2,FALSE)

B24 ends up pulling the formula result of "4" as this cell is a formula itself which is this:

=IFS(LEN('Q-Tools Data'!$A2)=12,LEFT('Q-Tools Data'!$A2,1),LEN('Q-Tools Data'!$A2)=13,LEFT('Q-Tools Data'!$A2,2),LEN('Q-Tools Data'!$A2)=14,LEFT('Q-Tools Data'!$A2,3))

its like it can't see that B24 is just 4. Instead it gives me an error, but if I type in 4 into the cell and replace that formula it works fine.

Can I not use Vlookup to look at a formulated cell or do I have to add an additional piece of information or formatting?
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
The LEFT function returns a text value, try
=--IFS(LEN('Q-Tools Data'!$A2)=12,LEFT('Q-Tools Data'!$A2,1),LEN('Q-Tools Data'!$A2)=13,LEFT('Q-Tools Data'!$A2,2),LEN('Q-Tools Data'!$A2)=14,LEFT('Q-Tools Data'!$A2,3))

which should convert it into a number
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,396
Messages
6,119,268
Members
448,881
Latest member
Faxgirl

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