Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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.
Customer | Date | Deposit |
A | 12/31/2018 | 200.00 |
B | 12/31/2018 | 100.00 |
A | 1/31/2019 | 200.00 |
B | 2/28/2019 | 100.00 |
C | 2/28/2019 | 50.00 |
A | 3/31/2019 | 200.00 |
B | 3/31/2019 | 100.00 |
C | 3/31/2019 | 50.00 |
D | 3/31/2019 | 25.00 |
Solved! Go to Solution.
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])
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.
User | Count |
---|---|
98 | |
76 | |
76 | |
48 | |
26 |