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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
DianaT
Helper I
Helper I

KPI report: One project with two relationship managers

Dear community,

 

I am trying to build a KPI dash board that allows me to filter by relationship managers. My dataset looks like this:

 

Project IDRevenueManager 1Manager 2
150000PeterJane
230000Jane 
38000Simone 
410000Simone Kate
595000Fiona 
668000Peter Jane
725000Kate 

 

What I am trying do present is this:

 

Manager RevenueProject count
Peter1180002
Simone180002
Jane1480003
Fiona950001
Kate350002

 

The idea is that if a project is co-managed by two staff, both will get 100% credit for revenue and project count. But with the manager information spread over two columns a simple slicer just doesn't do it... What would be the next simplest solution to this?

 

Any guidance will be greatly appreicated.

 

Cheers,

Diana

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @DianaT ,

 

Here we go 🙂

Table 2 = 
VAR k =
    DISTINCT (
        UNION ( DISTINCT ( 'Table'[Manager 1] ), DISTINCT ( 'Table'[Manager 2] ) )
    )
VAR c =
    ADDCOLUMNS (
        FILTER ( k, 'Table'[Manager 1] <> BLANK () ),
        "man", 'Table'[Manager 1]
    )
VAR d =
    ADDCOLUMNS (
        c,
        "Revene", CALCULATE (
            SUM ( 'Table'[Revenue] ),
            FILTER ( 'Table', 'Table'[Manager 1] = [man] )
        )
            + CALCULATE (
                SUM ( 'Table'[Revenue] ),
                FILTER ( 'Table', 'Table'[Manager 2] = [man] )
            ),
        "count", CALCULATE (
            DISTINCTCOUNT ( 'Table'[Project ID] ),
            FILTER ( 'Table', 'Table'[Manager 1] = [man] )
        )
            + CALCULATE (
                DISTINCTCOUNT ( 'Table'[Project ID] ),
                FILTER ( 'Table', 'Table'[Manager 2] = [man] )
            )
    )
RETURN
    SELECTCOLUMNS ( d, "Manager", [man], "Reven", [Revene], "Count_P", [count] )

 

Capture.PNG

 

Pbix as attached.

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

2 REPLIES 2
v-frfei-msft
Community Support
Community Support

Hi @DianaT ,

 

Here we go 🙂

Table 2 = 
VAR k =
    DISTINCT (
        UNION ( DISTINCT ( 'Table'[Manager 1] ), DISTINCT ( 'Table'[Manager 2] ) )
    )
VAR c =
    ADDCOLUMNS (
        FILTER ( k, 'Table'[Manager 1] <> BLANK () ),
        "man", 'Table'[Manager 1]
    )
VAR d =
    ADDCOLUMNS (
        c,
        "Revene", CALCULATE (
            SUM ( 'Table'[Revenue] ),
            FILTER ( 'Table', 'Table'[Manager 1] = [man] )
        )
            + CALCULATE (
                SUM ( 'Table'[Revenue] ),
                FILTER ( 'Table', 'Table'[Manager 2] = [man] )
            ),
        "count", CALCULATE (
            DISTINCTCOUNT ( 'Table'[Project ID] ),
            FILTER ( 'Table', 'Table'[Manager 1] = [man] )
        )
            + CALCULATE (
                DISTINCTCOUNT ( 'Table'[Project ID] ),
                FILTER ( 'Table', 'Table'[Manager 2] = [man] )
            )
    )
RETURN
    SELECTCOLUMNS ( d, "Manager", [man], "Reven", [Revene], "Count_P", [count] )

 

Capture.PNG

 

Pbix as attached.

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

This works beautifully! Thank you.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.