Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Anonymous
Not applicable

Single entry from multiple same entry

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.

MR007_0-1647939073461.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Kudoed Authors