Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |