HELP finding first Date of Clients

Walker_Ice

Board Regular
Joined
Oct 6, 2023
Messages
50
Office Version
  1. 2021
Platform
  1. MacOS
Hi Everyone,

I am trying to figure out how to find out when a client on my clientele list first visited our shop. Below is a sample table to give you an idea of what the clients list would look like and the date format that I am currently using.


TEsting_Excel_File.xlsx
ABCDEFGHI
1Client NameDatePaymentUnique ClientsDate of Arrived
2Eminem4-Feb-23$1,200.00Eminem?
3Jay Z13-Mar-23$1,450.00Jay Z
4Jay Z17-Jun-23$6,500.00Paul Wall
5Paul Wall25-Apr-23$2,345.00Snoop Dog
6Snoop Dog17-Jun-23$122.00Mark Cuban
7Mark Cuban6-Jun-23$1,234.00Mr Wonderful
8Mr Wonderful 20-Feb-23$921.00Kayla Smith
9Eminem28-Jun-23$875.00Cameron Smith
10Kayla Smith27-Jun-23$901.00Ted Cruz
11Cameron Smith 17-Mar-23$871.00Tom Lee
12Ted Cruz7-Jun-23$245.00
13Snoop Dog10-Jul-23$6,543.00
14Tom Lee31-Mar-23$234.00
15Jay Z1-Apr-23$1,900.00
16
Sheet7
Cell Formulas
RangeFormula
H2:H11H2=UNIQUE(A2:A15)
Dynamic array formulas.
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Date is a number so maybe You can use MINIFS?

Excel Formula:
=MINIFS($B:$B,$A:$A,$H2)
 
Upvote 0
Solution
Book1
ABCDEFGHI
1Client NameDatePaymentUnique ClientsDate of Arrived
2Eminem04-Feb-23$1,200.00Eminem04-Feb-23
3Jay Z13-Mar-23$1,450.00Jay Z13-Mar-23
4Jay Z17-Jun-23$6,500.00Paul Wall25-Apr-23
5Paul Wall25-Apr-23$2,345.00Snoop Dog17-Jun-23
6Snoop Dog17-Jun-23$122.00Mark Cuban06-Jun-23
7Mark Cuban06-Jun-23$1,234.00Mr Wonderful 20-Feb-23
8Mr Wonderful 20-Feb-23$921.00Kayla Smith27-Jun-23
9Eminem28-Jun-23$875.00Cameron Smith 17-Mar-23
10Kayla Smith27-Jun-23$901.00Ted Cruz07-Jun-23
11Cameron Smith 17-Mar-23$871.00Tom Lee31-Mar-23
12Ted Cruz07-Jun-23$245.00
13Snoop Dog10-Jul-23$6,543.00
14Tom Lee31-Mar-23$234.00
15Jay Z01-Apr-23$1,900.00
Sheet1
Cell Formulas
RangeFormula
H2:H11H2=UNIQUE(A2:A15)
I2:I11I2=MINIFS(B:B,A:A,H2)
Dynamic array formulas.
 
Upvote 0
Hello,

Thank you for your quick response. That did work, thank you for simplifying the function.

Below is the solution I used to solve this problem.

=IF(H2<>"", MIN(FILTER($B:$B, $A:$A = $H2)), "")
 
Upvote 0
Or just add a # to @KOKOSEK's formula :
Excel Formula:
=MINIFS(B:B,A:A,H2#)
in cell I2.
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,975
Members
449,095
Latest member
Mr Hughes

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