ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   VIN Number sorting (https://www.excelbanter.com/excel-worksheet-functions/145244-vin-number-sorting.html)

HRassist

VIN Number sorting
 
I have over 12000 VIN numbers on a worksheet. What I would like to do is find
an equation that would pull all of the VIN numbers that started with a
certain sequence of numbers & Letters -
Ie all VIN numbers that begin with RVS1T3. I've tried using the V-Lookup
and I can't seem to get the equation to pull correctly.
Please help!

Thank you


bj

VIN Number sorting
 
check out <data<filter either auto filter or advanced filter could
potencially do what you want

"HRassist" wrote:

I have over 12000 VIN numbers on a worksheet. What I would like to do is find
an equation that would pull all of the VIN numbers that started with a
certain sequence of numbers & Letters -
Ie all VIN numbers that begin with RVS1T3. I've tried using the V-Lookup
and I can't seem to get the equation to pull correctly.
Please help!

Thank you


HRassist

VIN Number sorting
 
With the advanced filter function I couldn't find a place to indicate the
beginning sequence I was looking for (I.E.the first 6 digits of the VIN
numbers)--- also--- Would a count function work with the sort filter?
Because-- after I have the list of VIN numbers- I will need to count how many
there are?

Thanks BJ!

"bj" wrote:

check out <data<filter either auto filter or advanced filter could
potencially do what you want

"HRassist" wrote:

I have over 12000 VIN numbers on a worksheet. What I would like to do is find
an equation that would pull all of the VIN numbers that started with a
certain sequence of numbers & Letters -
Ie all VIN numbers that begin with RVS1T3. I've tried using the V-Lookup
and I can't seem to get the equation to pull correctly.
Please help!

Thank you


HRassist

VIN Number sorting
 
I got the filter to work (I tried it before and I got all of the vin
numbers...- but I didn't know about the advanced selection)-- Now-- how can I
do a Count on a filtered column with out it counting all of the rows?

Thank you

"bj" wrote:

check out <data<filter either auto filter or advanced filter could
potencially do what you want

"HRassist" wrote:

I have over 12000 VIN numbers on a worksheet. What I would like to do is find
an equation that would pull all of the VIN numbers that started with a
certain sequence of numbers & Letters -
Ie all VIN numbers that begin with RVS1T3. I've tried using the V-Lookup
and I can't seem to get the equation to pull correctly.
Please help!

Thank you


HRassist

VIN Number sorting
 


"HRassist" wrote:

With the advanced filter function I couldn't find a place to indicate the
beginning sequence I was looking for (I.E.the first 6 digits of the VIN
numbers)--- also--- Would a count function work with the sort filter?
Because-- after I have the list of VIN numbers- I will need to count how many
there are?

Thanks BJ!

"bj" wrote:

check out <data<filter either auto filter or advanced filter could
potencially do what you want

"HRassist" wrote:

I have over 12000 VIN numbers on a worksheet. What I would like to do is find
an equation that would pull all of the VIN numbers that started with a
certain sequence of numbers & Letters -
Ie all VIN numbers that begin with RVS1T3. I've tried using the V-Lookup
and I can't seem to get the equation to pull correctly.
Please help!

Thank you


HRassist

VIN Number sorting
 
I got the filter to work!!!! -- Now.. one more thing.... how can I use a
Count function on a filtered column with out it counting all of the rows that
are hidden? (in order to count how many vins were pulled?)

THANKS BJ!!

"bj" wrote:

check out <data<filter either auto filter or advanced filter could
potencially do what you want

"HRassist" wrote:

I have over 12000 VIN numbers on a worksheet. What I would like to do is find
an equation that would pull all of the VIN numbers that started with a
certain sequence of numbers & Letters -
Ie all VIN numbers that begin with RVS1T3. I've tried using the V-Lookup
and I can't seem to get the equation to pull correctly.
Please help!

Thank you


Teethless mama

VIN Number sorting
 
=SUBTOTAL(3,your range)


"HRassist" wrote:

I got the filter to work!!!! -- Now.. one more thing.... how can I use a
Count function on a filtered column with out it counting all of the rows that
are hidden? (in order to count how many vins were pulled?)

THANKS BJ!!

"bj" wrote:

check out <data<filter either auto filter or advanced filter could
potencially do what you want

"HRassist" wrote:

I have over 12000 VIN numbers on a worksheet. What I would like to do is find
an equation that would pull all of the VIN numbers that started with a
certain sequence of numbers & Letters -
Ie all VIN numbers that begin with RVS1T3. I've tried using the V-Lookup
and I can't seem to get the equation to pull correctly.
Please help!

Thank you


bj

VIN Number sorting
 
you don't need the filtered colimn to do the count
you could use several other functions such as
=sumproduct(--(left(Vin_range,6)="RVS1T3"))
or
=countif(Vin_range,"RVS1T3*")
or if you have the Rv... in another cell (D3?)
=countif(Vin_range,D3&"*")

"HRassist" wrote:

I got the filter to work!!!! -- Now.. one more thing.... how can I use a
Count function on a filtered column with out it counting all of the rows that
are hidden? (in order to count how many vins were pulled?)

THANKS BJ!!

"bj" wrote:

check out <data<filter either auto filter or advanced filter could
potencially do what you want

"HRassist" wrote:

I have over 12000 VIN numbers on a worksheet. What I would like to do is find
an equation that would pull all of the VIN numbers that started with a
certain sequence of numbers & Letters -
Ie all VIN numbers that begin with RVS1T3. I've tried using the V-Lookup
and I can't seem to get the equation to pull correctly.
Please help!

Thank you


bj

VIN Number sorting
 
good catch, I forgot subtotal

"Teethless mama" wrote:

=SUBTOTAL(3,your range)


"HRassist" wrote:

I got the filter to work!!!! -- Now.. one more thing.... how can I use a
Count function on a filtered column with out it counting all of the rows that
are hidden? (in order to count how many vins were pulled?)

THANKS BJ!!

"bj" wrote:

check out <data<filter either auto filter or advanced filter could
potencially do what you want

"HRassist" wrote:

I have over 12000 VIN numbers on a worksheet. What I would like to do is find
an equation that would pull all of the VIN numbers that started with a
certain sequence of numbers & Letters -
Ie all VIN numbers that begin with RVS1T3. I've tried using the V-Lookup
and I can't seem to get the equation to pull correctly.
Please help!

Thank you


HRassist

VIN Number sorting
 
THANK YOU EVERYONE!!! IT WORKS PERFECTLY!!!

"bj" wrote:

you don't need the filtered colimn to do the count
you could use several other functions such as
=sumproduct(--(left(Vin_range,6)="RVS1T3"))
or
=countif(Vin_range,"RVS1T3*")
or if you have the Rv... in another cell (D3?)
=countif(Vin_range,D3&"*")

"HRassist" wrote:

I got the filter to work!!!! -- Now.. one more thing.... how can I use a
Count function on a filtered column with out it counting all of the rows that
are hidden? (in order to count how many vins were pulled?)

THANKS BJ!!

"bj" wrote:

check out <data<filter either auto filter or advanced filter could
potencially do what you want

"HRassist" wrote:

I have over 12000 VIN numbers on a worksheet. What I would like to do is find
an equation that would pull all of the VIN numbers that started with a
certain sequence of numbers & Letters -
Ie all VIN numbers that begin with RVS1T3. I've tried using the V-Lookup
and I can't seem to get the equation to pull correctly.
Please help!

Thank you


Gord Dibben

VIN Number sorting
 
=SUBTOTAL(2,A2:A1405)

See help on the SUBTOTAL Function for more on filtered rows.


Gord Dibben MS Excel MVP



On Tue, 5 Jun 2007 07:36:03 -0700, HRassist
wrote:

I got the filter to work!!!! -- Now.. one more thing.... how can I use a
Count function on a filtered column with out it counting all of the rows that
are hidden? (in order to count how many vins were pulled?)

THANKS BJ!!

"bj" wrote:

check out <data<filter either auto filter or advanced filter could
potencially do what you want

"HRassist" wrote:

I have over 12000 VIN numbers on a worksheet. What I would like to do is find
an equation that would pull all of the VIN numbers that started with a
certain sequence of numbers & Letters -
Ie all VIN numbers that begin with RVS1T3. I've tried using the V-Lookup
and I can't seem to get the equation to pull correctly.
Please help!

Thank you




All times are GMT +1. The time now is 03:00 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com