Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi there,
I would like to calculate the total amount of contract hours per filtered time period. The following table is connected to an employee table, which in turn, is connected to other tables.
I have created a calculated column that computes the contract hours per day (ContractUrenPerDag). Furthermore, I have created the following measure that should compute the contract hours per filtered time period:
ContractHours =
CALCULATE(
SUM(Contracten[ContractUrenPerDag]),
FILTER(
Contracten,
Contracten[StartDatum] <= FIRSTDATE(Kalender[Datum])
&& Contracten[EindDatum] >= LASTDATE(Kalender[Datum])
)
)
However, when visualizing the results in a matrix table, the ContractHours measure total does not add up correctly. Besides, in week 5 it computes a blank value.
The date table is not connected to the contract hours table.
Does anyone have a sollution for this problem?
Thanks in advance,
Jaap
Solved! Go to Solution.
Hi, to sum up value within rows, try this one
ContractHours =
SUMX(SUMMARIZE (Datum column),
CALCULATE(
SUM(Contracten[ContractUrenPerDag]),
FILTER(
Contracten,
Contracten[StartDatum] <= FIRSTDATE(Kalender[Datum])
&& Contracten[EindDatum] >= LASTDATE(Kalender[Datum])
)
))
Hi, to sum up value within rows, try this one
ContractHours =
SUMX(SUMMARIZE (Datum column),
CALCULATE(
SUM(Contracten[ContractUrenPerDag]),
FILTER(
Contracten,
Contracten[StartDatum] <= FIRSTDATE(Kalender[Datum])
&& Contracten[EindDatum] >= LASTDATE(Kalender[Datum])
)
))
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 51 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 72 | |
| 70 | |
| 39 | |
| 34 | |
| 23 |