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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello people,
I need a column that gives me the latest confirmed date depending on the product.
Does anyone of you have an idea how to implement this, below I have created a small example.
Thanks in advance!
Product | Confirmation date | latest Date |
1 | 06/16/21 | 06/24/21 |
1 | 06/18/21 | 06/24/21 |
1 | 06/24/21 | 06/24/21 |
2 | 06/17/21 | 06/22/21 |
2 | 06/22/21 | 06/22/21 |
with kind regards
Lukas
Solved! Go to Solution.
Here's the DAX for a calculated column to get your desired result
https://www.dropbox.com/s/6q26n6n2gpl17c3/keluv3.pbix?dl=0
Latest date CC =
MAXX (
FILTER ( 'Table', 'Table'[Product] = EARLIER ( 'Table'[Product] ) ),
'Table'[Confirmation date]
)
Here's the DAX for a calculated column to get your desired result
User | Count |
---|---|
10 | |
8 | |
5 | |
5 | |
4 |