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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
ismail95
Frequent Visitor

Sum by a column, compare with threshold and count distinct

I try to create below measure, and need your help.

 

The table is:

Capture12.PNG

I want to create a measure which Sum Knowledge column Grouping by Task Column. After that compare if the sum of knowledge level is bigger than Team Knowlegde Threshold.

 

Them Knowledge Thresold is

1 for Team 1 and

2 for Team 2.

 

After comparing, Distinct count how many tasks are below the thresold.

So sum of Knowledge per Task for this example are

Task A = 2

Task B = 1

Task C = 3

Task D = 1

 

Sum of 2 tasks are below the thresold.

Sum of Knowledge for Task B <= 1

Sum of Knowledge for Task D <= 2

 

so the output of measure will be 2.

 

This is my code, it works but the threshold is a constant and 2 . I couldnt manage to provide conditons above.

 

UnderThethreshold =
CALCULATE(
DISTINCTCOUNT('Table'[Task]),
FILTER(
all('Table'[Task Name]),
CALCULATE(SUM('Table'[Knowledge]))<= 2
)
)

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1713078301595.png

 

expected result measure: =
COUNTROWS (
    FILTER (
        SUMMARIZE (
            ADDCOLUMNS (
                ADDCOLUMNS (
                    'Table',
                    "@tasksum",
                        CALCULATE (
                            SUM ( 'Table'[Knowledge] ),
                            FILTER ( 'Table', 'Table'[Task] = EARLIER ( 'Table'[Task] ) )
                        )
                ),
                "@condition",
                    SWITCH ( TRUE (), 'Table'[Team] = "Team 1", 1, 'Table'[Team] = "Team 2", 2 )
            ),
            'Table'[Task],
            [@tasksum],
            [@condition]
        ),
        [@tasksum] <= [@condition]
    )
)

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

1 REPLY 1
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1713078301595.png

 

expected result measure: =
COUNTROWS (
    FILTER (
        SUMMARIZE (
            ADDCOLUMNS (
                ADDCOLUMNS (
                    'Table',
                    "@tasksum",
                        CALCULATE (
                            SUM ( 'Table'[Knowledge] ),
                            FILTER ( 'Table', 'Table'[Task] = EARLIER ( 'Table'[Task] ) )
                        )
                ),
                "@condition",
                    SWITCH ( TRUE (), 'Table'[Team] = "Team 1", 1, 'Table'[Team] = "Team 2", 2 )
            ),
            'Table'[Task],
            [@tasksum],
            [@condition]
        ),
        [@tasksum] <= [@condition]
    )
)

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Top Kudoed Authors