I have a workbook where one worksheet has employee numbers and hours they're working on a specific project. One employee can have multiple rows when they work on more than one project.
Another worksheet uses the formula below to total all hours for an employee so I can see over and under allocation. In this example the employee number is in column F on the source data, and hours worked is in column R. The employee number has a leading
character e.g. A776655
I have a SUMIF formula as follows which works fine:
=SUMIF('Resource Demand'!$F$7:$F$500,$A7,'Resource Demand'!R$7:R$500)
My problem hits when I try to move this formula off to another workbook (note, I've replaced the real path with
\\path for readability).
An internet search shows that this works fine as long as Demand MASTER is open, which it will usually not be:
=SUMIF('\path[Demand MASTER.xlsx]Resource Demand'!$F$7:$F$500,$A7,'\path[Demand MASTER.xlsx]Resource Demand'!R$7:R$500)
And I've seen suggestions that this should work as a replacement, but all I get is 0 values:
=SUMPRODUCT(('\path[Demand MASTER.xlsx]Resource Demand'!$F$7:$F$500=$A7),'\path[Demand MASTER.xlsx]Resource Demand'!R$7:R$500)
I don't know if it makes any difference, but these files are stored on a SharePoint site, and they are in the same folder.
Can anyone help please?