Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hello,
I am trying to filter and only sum up values where the Measure>=3. Here is my measure:
Solved! Go to Solution.
Hi,
One way to do it is, to first create a calculated table to hold full names and sum of values, then use "Filter" to filter out summed values => 3 , then sum the values in the filtered table to get the value you need.
SumInOut =
VAR AggTable =
FILTER (
SUMMARIZE ( 'Table', 'Table'[Names], "SumVal", SUM ( 'Table'[val] ) ),
[SumVal] >= 3
)
VAR result =
CALCULATE ( SUM ( 'Table'[val] ), AggTable )
RETURN
result
Regards,
Haitham
Hi,
One way to do it is, to first create a calculated table to hold full names and sum of values, then use "Filter" to filter out summed values => 3 , then sum the values in the filtered table to get the value you need.
SumInOut =
VAR AggTable =
FILTER (
SUMMARIZE ( 'Table', 'Table'[Names], "SumVal", SUM ( 'Table'[val] ) ),
[SumVal] >= 3
)
VAR result =
CALCULATE ( SUM ( 'Table'[val] ), AggTable )
RETURN
result
Regards,
Haitham
would this work?
SumInOut = SUMX(Filter( NorthtecPunchOrigin, NorthtecPunchOrigin[SumInOut] <=3), [SumInOut])
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
115 | |
112 | |
105 | |
95 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |