Forum Discussion
Dabudda
Sep 15, 2023Copper Contributor
Trying to gather hours from different workpackages
Hello Guys,
I am trying to solve the following Problem:
I have different kind of projects named OVR,ITS and DIG. Inside these projects i am working of different packages like 2.1, 5.1, 3.3, 1, 3.5 etc. . And then you can also see the hours beeing display in the next column.
I now want to gather the hours for each Package (e.g. 2.1) and sort them to the projects.
My Idea was to use: =SUMIF(C:C, A:A, "OVR") but it did not work and gave me a error after error.
Any help regarding this? also sorry for my bad english
5 Replies
- JKPieterseSilver ContributorSUMIF accepts wildcards, so you could do this:
=SUMIF(C:C, A:A, "OVR*")
or
=SUMIF(C:C, A:A, "OVR-2.1*")- DabuddaCopper ContributorThat gives me 0 as summed up Hours.
I Do understand it correct, that A:A is my comment with the OVR and that my C:C are my hours?Use JKPieterse 's formula but with SUMIFS instead of SUMIF