Formule d'échéancier et de calcul d'heures / Schedule and hours calculation formula

Copper Contributor

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 employés, afin de générer un calendrier qui afficherait le nombre d'heure par projet à la journée d'échéance. (À partir d'une base de données/liste) 

 

Voici un exemple, j'ai besoin d'une formule attributaire afin de remplir le tableau des jours de la semaine en fonction de la base de données. (voir l'image plus bas.)

Merci à tous, c'est très apprécié!

 

English :

 

Hi everyone I am currently looking for a formula that can add the number of hours per project, for each employee, in order to generate a calendar that would display the number of hours per project on the due date. (From a database/list) Here is an example, I need an attribute formula in order to populate the weekdays array based on the database. (see image below.) Thank you all, it's much appreciated!

Capture.PNG

1 Reply

Hi @Vincent_Bou4403 

 

_Screenshot.png

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)