Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I want to do the following:
At my company there are two shifts in a day, and the data is uploaded when each shift ends.
So I have two rows per day.
I need to create two columns (as you can see in red) that sum the hours worked and not worked per day.
The function has to take into account the day, if it is the same, it must add the two values of hours
Can anybody help me?
Solved! Go to Solution.
hi @Anonymous
try like:
Hs worked/day =
VAR _worked =
SUMX(
FILTER(
TableName,
TableName[Date]=EARLIER(TableName[Date])
),
TableName[Worked]
)
RETURN
IF([Shift]="B", _worked)
Hs unworked/day =
VAR _unworked=
SUMX(
FILTER(
TableName,
TableName[Date]=EARLIER(TableName[Date])
),
TableName[Unworked]
)
RETURN
IF([Shift]="B",_unworked)
it worked like this:
hi @Anonymous
It is more advisable to do with table visuals, like this:
2 reminders: 1) avoid the date hierarchy, 2) choose SUM for the two hour columns.
Hello, thank you for the reply.
The problem with that is I need to make other functions after with the values of hours per day. So I need to do it in DAX.
hi @Anonymous
try like:
Hs worked/day =
VAR _worked =
SUMX(
FILTER(
TableName,
TableName[Date]=EARLIER(TableName[Date])
),
TableName[Worked]
)
RETURN
IF([Shift]="B", _worked)
Hs unworked/day =
VAR _unworked=
SUMX(
FILTER(
TableName,
TableName[Date]=EARLIER(TableName[Date])
),
TableName[Unworked]
)
RETURN
IF([Shift]="B",_unworked)
it worked like this:
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
7 |