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 nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
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
Solved! Go to Solution.
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
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
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 27 | |
| 23 | |
| 18 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 42 | |
| 41 | |
| 39 | |
| 37 |