Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
17 | |
16 |
User | Count |
---|---|
34 | |
22 | |
19 | |
18 | |
11 |