Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
av9
Helper III
Helper III

Calculate first deposit date based on value in row date

Hi,

I'm trying to calculate first deposit date for each of the 4 customers in the table below. As you can see my data provided each month is in the sample format below. Any help appreciated.

 

CustomerDateDeposit
A12/31/2018200.00
B12/31/2018100.00
A1/31/2019200.00
B2/28/2019100.00
C2/28/201950.00
A3/31/2019200.00
B3/31/2019100.00
C3/31/201950.00
D3/31/201925.00
1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @av9 

Try this, where Table1 is the table you show:

1. Place Table1[Customer] in the rows of a matrix visual

2. Create this measure and place it in values of the matrix visual

 

FirstDepositDate = MIN(Table1[Date])

 

View solution in original post

2 REPLIES 2
AlB
Community Champion
Community Champion

Hi @av9 

Try this, where Table1 is the table you show:

1. Place Table1[Customer] in the rows of a matrix visual

2. Create this measure and place it in values of the matrix visual

 

FirstDepositDate = MIN(Table1[Date])

 

Thanks that worked. 

 

I used Edit Interactions to make sure page level slicers were ignored.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors