Hello,
I'm working on a sheet where rows are continuously inserted using a web form so I can't use parent/child functionality. These rows contain hours spent on clients and sub-clients. I have two summary rows at the top of the sheet and I'd like the hours column on those two rows to have the total hours for clients (row 1) and sub-clients (row 2). I'm trying the following formula for row 1 hours:
=SUMIFS([Hours]:[Hours], [Client/Sub-Client]:[Client/Sub-Client], "Client")
I get the totals for summary line one perfect, however I get a circular reference error when applying the following formula to summary line 2:
=SUMIFS([Hours]:[Hours], [Client/Sub-Client]:[Client/Sub-Client], "Sub-Client")
The only way I've been able to make this work is to add an extra column for use only in the summary rows called "Total Hours". Then I can use the two formulas.
Since adding extra columns for each item I want to total is going to drastically increase the size of the sheet, is there any way to keep using the Hours column and get two separate totals by client type?