Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
7 |