About
Pricing
Community
Teams
Start Free Trial
Log in
tenriquez199
asked on
3/16/2012
how can i select cells with certain value in excel over numeric cells treating them as string values
hi
i have an excel sheet with numeric values at column D
i need to select rows who contain value 889490 at any record at column D
someone know how to do this via excel or vba?
thanks
MINUTA-2284820110311.xls
Microsoft Excel
Visual Basic Classic
3
1
Last Comment
aikimark
8/22/2022 - Mon
dlmille
3/16/2012
Do you want to select them all at once? You'll need to add a helper column to search by text.
E.g., column M2 and copy down:
[M2]=Text(D2,"0#")
Add column M to the filter, then search on contains 889490
See attached.
Dave
MINUTA-2284820110311.xls
krishnakrkc
3/16/2012
Hi
Or
in K2
=RIGHT(D2,6)="889490"
go to Data > Advanced Filter > Check on 'Filter the list, in place'
list range: A1:I827
criteria range: k1:k2
click ok.
Also see the attached image.
Kris
AdvFilter.JPG
ASKER CERTIFIED SOLUTION
aikimark
3/17/2012
THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
E.g., column M2 and copy down:
[M2]=Text(D2,"0#")
Add column M to the filter, then search on contains 889490
See attached.
Dave