Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
I try to create a measure, which sums up working hours in Quarters. There is a connection between two tables based on Month name & Year. Based on table 2 i want to show sum of working hours based on quarters from table1.
Table1
Table2:
Solved! Go to Solution.
Hi @Anonymous ,
Here are the steps you can follow:
1. Create measure.
Measure =
var _right=VALUE( RIGHT(MAX('Table2'[monthname]),4))
return
CALCULATE(SUM('Table1'[Working Hours]),FILTER(ALL(Table1),
'Table1'[Year]=_right&&'Table1'[Quarters]=MAX('Table2'[Quarter])))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Anonymous ,
Here are the steps you can follow:
1. Create measure.
Measure =
var _right=VALUE( RIGHT(MAX('Table2'[monthname]),4))
return
CALCULATE(SUM('Table1'[Working Hours]),FILTER(ALL(Table1),
'Table1'[Year]=_right&&'Table1'[Quarters]=MAX('Table2'[Quarter])))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
For that you can just drag Quarter field and hours field onto a visualization, no?
I want to show sum of working hours per quarter from table1 in working hours column.
Table2:
What do you mean "Based on table2"
What information is in table2, that is not already in table1?
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 37 | |
| 29 | |
| 27 |