Hi community
i'm trying to create a formula that calculate a sum in a column based on may criteria.
here is a screenshot of the affected column
i want to calculate the "volume cumul" (sum of volume collected) based on
- Week Active should be "This Week" or "Next Week"
- same Unique ID should be calculated together
- if Unique ID is blank, no count should appears
for now, the formula calculate all Volume collected together and not per Unique ID.
here is my actual formulas:
=IF(AND(OR([Week Active]@row = "This Week", [Week Active]@row = "Next Week"), [Unique ID]@row <> ""), SUM([Volume collecte]$1:[Volume collecte]@row), "")
i've tried a SUMIFS but i can't find the way to count "per Unique ID together"
anyone can help me on this?
thank you