We're giving away 30 tickets for FREE! Share your story, your vision, or your hustle and tell us why YOU deserve a ticket.
Apply nowWin a FREE 3 Day Ticket to FabCon Vienna. Apply now
Hi,
How do I create a column to sum up the values if the Day and Night count for individual staff for each month.
The end goal is to have a column with the day and night counts combined.
Raw Data:
End Goal:
Thank you.
Nic
Solved! Go to Solution.
hi @nicholas_
try to add a calculated column like:
Column =
SUMX(
FILTER(
data,
data[Staff]=EARLIER(data[Staff])
&&data[Date]=EARLIER(data[Date])
),
data[Days]
)
it worked like:
hi @nicholas_
try to add a calculated column like:
Column =
SUMX(
FILTER(
data,
data[Staff]=EARLIER(data[Staff])
&&data[Date]=EARLIER(data[Date])
),
data[Days]
)
it worked like:
User | Count |
---|---|
13 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
28 | |
20 | |
14 | |
11 | |
5 |