Hi! I am working on a tracking sheet where I want to sum up the minutes worked by each employee on each given day.
My problem is that we have a new employee whose initials overlap with an existing employee's; ie ABC and BC. I can't figure out how to differentiate between the two within the SUMIFS statement. The operator names are pulled from manually entered spreadsheets so sets of initials could be listed in any order and preceded by " ", ",", or nothing.
I've tried subtracting the difference from BC's totals, but this doesn't account for when they work together on something (minutes should count for both). I'm playing with conditional statements example: =SUMIFS(C:C,B:B,AND("*"&F17&"*","<>"*"&F15"*""),A:A,$G$10) but having trouble within the SUMIFS statement since all conditions must be true.
My idea for a manual forced solution was to find & replace all instances of "ABC" with "AC" but for some reason this gives a result of 0 minutes for both operators, why is that?
I'm sure there's a better way to accomplish this task overall so I'm open to suggestions, just interested in learning how to solve this case as well
My problem is that we have a new employee whose initials overlap with an existing employee's; ie ABC and BC. I can't figure out how to differentiate between the two within the SUMIFS statement. The operator names are pulled from manually entered spreadsheets so sets of initials could be listed in any order and preceded by " ", ",", or nothing.
I've tried subtracting the difference from BC's totals, but this doesn't account for when they work together on something (minutes should count for both). I'm playing with conditional statements example: =SUMIFS(C:C,B:B,AND("*"&F17&"*","<>"*"&F15"*""),A:A,$G$10) but having trouble within the SUMIFS statement since all conditions must be true.
My idea for a manual forced solution was to find & replace all instances of "ABC" with "AC" but for some reason this gives a result of 0 minutes for both operators, why is that?
I'm sure there's a better way to accomplish this task overall so I'm open to suggestions, just interested in learning how to solve this case as well