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.
Hi,
I have two columns. COL A has account name(Where the same account name can show up multiple times) and COL B has Earliest Create date.
How do I show only the earliest date by Unique Account? I only need to see the first created date by account.
Thanks,
Solved! Go to Solution.
hi @Anonymous
try
measure = calculate(min(Table[Date]), allexcept(Table, Table[account name]))
Hi @Anonymous ,
You can try the measure below:
measure = CALCULATE(MIN('Table'[Date]),FILTER(ALL('Table'),'Table'[Account name] = MAX('Table'[Account name])))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
hi @Anonymous
try
measure = calculate(min(Table[Date]), allexcept(Table, Table[account name]))
How in the heck did this get translated to spanish and posted in the spanish forum....
fortunately I can read, but this is odd.
Hi AZ,
This worked great. Thank you.
Thanks,
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.