Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi Everyone,
How can i get the min value from this table created in Dax:
EVALUATE
var t = SUMMARIZE(
F_CUSTO_FRANGO,
F_CUSTO_FRANGO[Ano-Mes],
"Total", sum(F_CUSTO_FRANGO[Total Final]
)
)
return
t
I need the min of the sum, i think a a summarize table and get the min, i don't know if is better way..
Solved! Go to Solution.
Hi,
You could use this measure:
MinSum =
MINX (
SUMMARIZE (
F_CUSTO_FRANGO,
F_CUSTO_FRANGO[Ano-Mes],
"Total", SUM ( F_CUSTO_FRANGO[Total Final] )
),
[Total]
)
Regards
=
MINX(
SUMMARIZECOLUMNS(
F_CUSTO_FRANGO[Ano-Mes],
"@Total", SUM( F_CUSTO_FRANGO[Total Final] )
),
[@Total]
)
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
@marcio_fornari
To aggregate over a virtual table, you can use an iterator function: with the dame code you have, add the following:
EVALUATE
VAR t =
SUMMARIZE (
F_CUSTO_FRANGO,
F_CUSTO_FRANGO[Ano-Mes],
"Total", SUM ( F_CUSTO_FRANGO[Total Final] )
)
RETURN
MINX ( t, [Total] )
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Hello All,
I have the similar requirement where I want Sum of Minimum QTY in each SFC ( there are multile record at SFC level ) from Summarize Table
I have tried Measure as
Thank you so much everyone!
it's to easy! OMG 😅
@marcio_fornari
To aggregate over a virtual table, you can use an iterator function: with the dame code you have, add the following:
EVALUATE
VAR t =
SUMMARIZE (
F_CUSTO_FRANGO,
F_CUSTO_FRANGO[Ano-Mes],
"Total", SUM ( F_CUSTO_FRANGO[Total Final] )
)
RETURN
MINX ( t, [Total] )
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
=
MINX(
SUMMARIZECOLUMNS(
F_CUSTO_FRANGO[Ano-Mes],
"@Total", SUM( F_CUSTO_FRANGO[Total Final] )
),
[@Total]
)
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Hi,
You could use this measure:
MinSum =
MINX (
SUMMARIZE (
F_CUSTO_FRANGO,
F_CUSTO_FRANGO[Ano-Mes],
"Total", SUM ( F_CUSTO_FRANGO[Total Final] )
),
[Total]
)
Regards
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
11 |