March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
table example
I need this
The DAX I wrote is
New_Column = CALCULATE(MIN('table'[Sup_group]),FILTER(ALL('table'),
'table'[province] = EARLIER('table'[province]) &&
'Stable'[Quarter] = "Q1"))
The result is
But I don't want this kind of result, I want like the first picture.
help me please,
thank you.
Solved! Go to Solution.
Hi @only_me321
Please try
New_Column =
MINX (
TOPN (
1,
CALCULATETABLE ( 'table', ALLEXCEPT ( 'table', 'table'[province] ) ),
'Stable'[Quarter], ASC
),
'table'[Sup_group]
)
Hi @only_me321
Please try
New_Column =
MINX (
TOPN (
1,
CALCULATETABLE ( 'table', ALLEXCEPT ( 'table', 'table'[province] ) ),
'Stable'[Quarter], ASC
),
'table'[Sup_group]
)
Oh, I can do it, just like you let me try. 😍
thank you, I tried to follow you result is
which i want like this
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
12 | |
9 | |
7 |
User | Count |
---|---|
38 | |
32 | |
28 | |
12 | |
11 |