Forum Discussion
Vincent_Bou4403
Jul 04, 2022Copper Contributor
Formule d'échéancier et de calcul d'heures / Schedule and hours calculation formula
English message will follow, thanks to everyone! Salut à tous et à toutes, Je suis présentement à la recherche d'une formule pouvant aditionner le nombre d'heures par projet, pour chaque emp...
Lorenzo
Jul 05, 2022Silver Contributor
Assuming Excel 2021 or 365, in B3 then copy right until F3 and copy down B3:F3 as necessary:
=SUM(
FILTER(JohnProjectHours[[Hours]:[Hours]],
(JohnProjectHours[[Project]:[Project]]=$A3) *
ISNUMBER(SEARCH(B$2,JohnProjectHours[[Timeline]:[Timeline]])),
0
)
)In G3 and copy down as necessary:
=SUM(B3:F3)