Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi All,
as per below attachment i need only those line items "Sum value (testing2)" where "dc" filed have "H&S"(both) except this if we have only "H" then its value shoud be "0"...
please help me to resolve this issue.
Thanks in advance.
Solved! Go to Solution.
HI @Anonymous,
You can try to use the following measure formula if it was suitable for your requirement:
formula =
VAR currAssignment =
VALUES ( Table[Assignment] )
VAR summary =
SUMMARIZE (
FILTER (
ALLSELECTED ( Table ),
[DC]
IN { "H", "S" }
&& [Assignment] IN currAssignment
),
[Assignment],
"c_DC", COUNT ( Table[DC] ),
"s_Test2", SUM ( Table[Test2] )
)
RETURN
SUMX ( FILTER ( summary, [c_DC] = 2 ), [s_Test2] )
Regards,
Xiaoxin Sheng
HI @Anonymous,
You can try to use the following measure formula if it was suitable for your requirement:
formula =
VAR currAssignment =
VALUES ( Table[Assignment] )
VAR summary =
SUMMARIZE (
FILTER (
ALLSELECTED ( Table ),
[DC]
IN { "H", "S" }
&& [Assignment] IN currAssignment
),
[Assignment],
"c_DC", COUNT ( Table[DC] ),
"s_Test2", SUM ( Table[Test2] )
)
RETURN
SUMX ( FILTER ( summary, [c_DC] = 2 ), [s_Test2] )
Regards,
Xiaoxin Sheng
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |