Vba code or formula to search value in column and return the same

harinsh

Active Member
Joined
Feb 7, 2012
Messages
273
Hi Mr.Excel,

I am looking for vba code or formula where I can search number in the given column (this column combination of numbers, text and special characters). In this I would like to take only number which I require or entire cell which contain the requested number, if provided number does not available I should get the not found message so, that it will help that requested number not presented in the column.

Can anyone help on this please? It's life saver for me....

Thank you,
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Yes sure, I could done it before, anyhow here below mentioned sample data

Column A
12365(CAN)
25526(WIN)
69856(Lost)
99865(NOW)*(NEW)
(Blank)65986
69859(Lost)**98768(New)

Require result : If I search for 99865 then I need that entire cell or row which contain that value.

please do let me know if anything need....

Thanks,
 
Upvote 0
Thanks for the Excel readable sample in the forum itself...

Row\Col
A​
B​
C​
D​
1​
2​
12365(CAN)
99865
99865(NOW)*(NEW)
3​
25526(WIN)
4​
69856(Lost)
5​
99865(NOW)*(NEW)
6​
(Blank)65986
7​
69859(Lost)**98768(New)
8​

In D2 enter:

=LOOKUP(9.99999999999999E+307,SEARCH(C2,$A$2:$A$7),$A$2:$A$7)
 
Upvote 0
super....but even if I give blank or "0" value its searching and giving some values where I do not have any blanks here...can we control this...if search option blank means should not give value or should be NA...something like that...

Thanks for your help...
 
Upvote 0
Thank you very much...I am really not sure whether I can learn this formula or understand this formula!!!
 
Upvote 0
Thank you very much...

You are welcome.

I am really not sure whether I can learn this formula or understand this formula!!!

01. When C2 is empty:

1/C2 >> 1/0 >> #DIV/0!

02. When C2 houses a 0:

1/C2 >> 1/0 >> #DIV/0!

03. When C2 houses a string like DAX:

1/C2 >> 1/"DAX" >> #VALUE !

04. When C2 houses a non-zero number, say, 2:

1/C2 >> 1/2 >> 0.5

05.

ISNUMBER(1/C2) >> FALSE for [1] thru [3] and TRUE for [4]

06. When [5] is FALSE, IF yields N/A.

07. When [5] is TRUE, IF runs the LOOKUP bit.

08. Let's call 9.99999999999999E+307 BigNum, a limit of Excel itself. See for more: 9.9999999 .... ?

09. lookup(lookup-value,match-array,result-array)

returns a result from the result-array when looking for lookup-value in the match-array succeeds. A result from the result-array is positionwise a correlate of a hit in the match-array.

10. search(search-value,reference)

returns a position at which it finds the search value in some part of the reference. A position is always an integer.

11. LOOKUP(BigNum,SEARCH(C2,$A$2:$A$7),$A$2:$A$7) [where SEARCH(C2,$A$2:$A$7) == match-array and $A$2:$A$7 == result-array]

finds (if any) invariably the last integer (number) in the match-array SEARCH creates and returns a corresponding value from the result-array.

12. See for more involving [10] the following: https://www.mrexcel.com/forum/excel-questions/724843-there-case-sensitive-vlookup.html#post3568323
 
Upvote 0

Forum statistics

Threads
1,215,915
Messages
6,127,691
Members
449,398
Latest member
m_a_advisoryforall

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