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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Generate a summary table from different table.

I'm trying to generate a summary table B from different tables by date 

 

Table B contains, 

total orders, parameter B, total revenue.

 

 

What i'm using right now is multiple if conditon to get data from different tables total Orders

 
 
Total orders =
IF('Summary_Revenue'[Position] = "Inbound Agents", SUM('In House COST PER CALL'[total_orders]),
IF('Summary_Revenue'[Position] = "Senior CSR complaint",1,
IF('Summary_Revenue'[Position] = "At home agent",SUM('Home Agent COST PER CALL'[total orders]),
IF('Summary_Revenue'[Position] = "D",SUM('W Cost Per Call'[total orders]),
IF('Summary_Revenue'[Position] = "W",SUM(O[total orders]),
BLANK()
)))))
 
 
But what i'm looking for is a day summary for each individual postion group by its date.
 
How can i reach such result?
 
1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @Anonymous

Are the tables related via "date" columns in "date" table?

like:

table1<->date table    table2<->date table   table3<->date table......

Do you need to select dates then Total orders for each individual postion group shows accordingly?

 

If so, try this measure:

Total orders =
IF (
    MAX ( 'Summary_Revenue'[Position] ) = "Inbound Agents",
    CALCULATE (
        SUM ( 'In House COST PER CALL'[total_orders] ),
        ALLSELECTED ( Date[date] )
    ),
    IF (
        MAX ( 'Summary_Revenue'[Position] ) = "Senior CSR complaint",
        1,
        IF (
            MAX ( 'Summary_Revenue'[Position] ) = "At home agent",
            CALCULATE (
                SUM ( 'Home Agent COST PER CALL'[total orders] ),
                ALLSELECTED ( Date[date] )
            ),
            IF (
                MAX ( 'Summary_Revenue'[Position] ) = "D",
                CALCULATE (
                    SUM ( 'W Cost Per Call'[total orders] ),
                    ALLSELECTED ( Date[date] )
                ),
                IF (
                    MAX ( 'Summary_Revenue'[Position] ) = "W",
                    CALCULATE ( SUM ( O[total orders] ), ALLSELECTED ( Date[date] ) ),
                    BLANK ()
                )
            )
        )
    )
)

Best Regards

Maggie

 

View solution in original post

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @Anonymous

Are the tables related via "date" columns in "date" table?

like:

table1<->date table    table2<->date table   table3<->date table......

Do you need to select dates then Total orders for each individual postion group shows accordingly?

 

If so, try this measure:

Total orders =
IF (
    MAX ( 'Summary_Revenue'[Position] ) = "Inbound Agents",
    CALCULATE (
        SUM ( 'In House COST PER CALL'[total_orders] ),
        ALLSELECTED ( Date[date] )
    ),
    IF (
        MAX ( 'Summary_Revenue'[Position] ) = "Senior CSR complaint",
        1,
        IF (
            MAX ( 'Summary_Revenue'[Position] ) = "At home agent",
            CALCULATE (
                SUM ( 'Home Agent COST PER CALL'[total orders] ),
                ALLSELECTED ( Date[date] )
            ),
            IF (
                MAX ( 'Summary_Revenue'[Position] ) = "D",
                CALCULATE (
                    SUM ( 'W Cost Per Call'[total orders] ),
                    ALLSELECTED ( Date[date] )
                ),
                IF (
                    MAX ( 'Summary_Revenue'[Position] ) = "W",
                    CALCULATE ( SUM ( O[total orders] ), ALLSELECTED ( Date[date] ) ),
                    BLANK ()
                )
            )
        )
    )
)

Best Regards

Maggie

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.