Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello!
I have a measure for a sumx and i need the grand total of it.
Quantity tot of selected =
SUMX(
SUMMARIZE(
Data, Data[ChannelNumber], Data[Date],
"qtyToCalc", IF( [Factory Leadtime raw] <> BLANK(), [Quantity])
),
[qtyToCalc]
)
Is there a way for me to do that?
Solved! Go to Solution.
@Anonymous , Try like
Quantity tot of selected =
calculate(SUMX(
SUMMARIZE(
Data, Data[ChannelNumber], Data[Date],
"qtyToCalc", IF( [Factory Leadtime raw] <> BLANK(), [Quantity])
),
[qtyToCalc]
), allselected())
@Anonymous , Try like
Quantity tot of selected =
calculate(SUMX(
SUMMARIZE(
Data, Data[ChannelNumber], Data[Date],
"qtyToCalc", IF( [Factory Leadtime raw] <> BLANK(), [Quantity])
),
[qtyToCalc]
), allselected())
worked like a charm!
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 |
---|---|
112 | |
107 | |
97 | |
38 | |
32 |
User | Count |
---|---|
153 | |
122 | |
77 | |
74 | |
44 |