Min Value - Multiple line of Data

Ben_Holmes

Board Regular
Joined
Mar 30, 2004
Messages
147
Hi,

I am looking of a quick way of finding the minimum date (start date) amongst a large data set for each customer.

Each customer has access to a number of products. I have a list of data customer and product that details the start date which a customer started using a particular product. I want to produce a list of customers that details the earliest date, i.e. the date which they started using our services.

Date is as follows:

Customer name Product Code Start Date
A AA1 10/10/10
A BB1 12/12/10
B AA1 09/09/10
C AA1 10/10/11
etc.

I have 30,000 rows of data containing 6,000 customers accessing 35 different products.

Any help would be apprciated.

I have tried using a vlookup however this pulls the first date it comes across and not the earliest date. What I need is a vlookup minimum finder.

Kind Regards

Ben
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
You'll want to use =min(if()) confirmed as an array (ctrl+shift+enter). There are a few ways to do it, will you adding customers? Or, is the list static?
 
Upvote 0
In that case there are two simple options:
1) Assuming customer name is A1 and start date is c1
-In D2: =min(if(a1=$a$1:$a$10,$a$1:$a$10)) <--ctrl+shift+enter
-double click the bottom right corner to drop down formula. (I only went to a10, so you'll need to make it as long as needed)
2) Select column A, copy paste into new area. Go to data -> remove duplicates. Then use the same formula listed above (but change "a1=" to the new area)
 
Upvote 0
It reminds excel that you're work with an "array" function. Put simply, there are three levels to learning excel.
-working with formulas
-working with arrays
-and, working with VBA
Obviously, there are levels of complexity within each of the tranches. Learning array functions will be very powerful is you work in excel often. Google it, and you'll get plenty of results if you're interested.
 
Upvote 0

Forum statistics

Threads
1,219,161
Messages
6,146,657
Members
450,706
Latest member
LGVBPP

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