Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I have this measure,I am trying to some the values on the column € Diferença, but it not right.
Can you help me please?
final mesure:
secundary measures 1:
Solved! Go to Solution.
@Bruce101995
€ Diferença =
SUMX(
SUMMARIZE(
Calendario,
Calendario[MesNome],
"Qty", [qtd],
"Diff", [Diff preço real ORCA]
),
[Qty] * [Diff]
)
If you want to go hardcore clean (sometimes better for debugging):
€ Diferença =
VAR _Table =
ADDCOLUMNS(
VALUES(Calendario[MesNome]),
"Qty", [qtd],
"Diff", [Diff preço real ORCA],
"Result", [qtd] * [Diff preço real ORCA]
)
RETURN
SUMX(_Table, [Result])
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
Thank you, it worked!
@Bruce101995
€ Diferença =
SUMX(
SUMMARIZE(
Calendario,
Calendario[MesNome],
"Qty", [qtd],
"Diff", [Diff preço real ORCA]
),
[Qty] * [Diff]
)
If you want to go hardcore clean (sometimes better for debugging):
€ Diferença =
VAR _Table =
ADDCOLUMNS(
VALUES(Calendario[MesNome]),
"Qty", [qtd],
"Diff", [Diff preço real ORCA],
"Result", [qtd] * [Diff preço real ORCA]
)
RETURN
SUMX(_Table, [Result])
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
User | Count |
---|---|
97 | |
76 | |
76 | |
48 | |
26 |