Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. 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,
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
92 | |
86 | |
84 | |
66 | |
49 |
User | Count |
---|---|
140 | |
114 | |
108 | |
64 | |
60 |