VLOOKUP Not Showing Result ?

Aitch

Board Regular
Joined
Jan 27, 2019
Messages
119
Office Version
  1. 2010
Platform
  1. Windows
It's a pretty simple function - just look down the column range and display the cell that is not blank...

=VLOOKUP("?*",A2:A12,1,0)

It works when there is text in the cell - but gives an error when the cell shows a number?

What is the fix?

Thanks for your help!
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
It's a pretty simple function - just look down the column range and display the cell that is not blank...
If there is only one not blank then
=SUM(A2:A12)

Otherwise try
=INDEX(A2:A12,MATCH(TRUE,INDEX(A2:A12<>"",0),0))
 
Last edited:
Upvote 0
If you know that you have an entry, but it could be text or number, then:
[FONT=Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif]=IFERROR(VLOOKUP("?*",A2:A12,1,0),MAX(A2:A12))[/FONT]
 
Upvote 0
Thank you! I'd have never thought of using SUM or MAX - even though it's so obvious lol!

Is there a specific reason why VLOOKUP doesn't play well with numbers?
 
Upvote 0
Thank you! I'd have never thought of using SUM or MAX - even though it's so obvious lol!
You're welcome. :)


Is there a specific reason why VLOOKUP doesn't play well with numbers?
Being in quotes, your lookup value "?*" is specifically saying it is a Text value that you are looking for.
 
Upvote 0

Forum statistics

Threads
1,214,798
Messages
6,121,636
Members
449,043
Latest member
farhansadik

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