'joeu2004[_2_ said:
;1609273']I wrote:-
=SUM(IF(J.Adams!$F$4:$F$24=(Summary!$AA$14:$AA$23),(J.Adams!$E$4:$E$24)))
says "value is not available to the formula or function."--
[....]-
Also, your expression is ambiguous with respect to what you
might mean by it. If you correct the syntax error (I don't
know how!), it will be interpreted effectively as (simplifying
for brevity): =SUM(IF(F4=AA14,E4),IF(F5=AA15,E5),IF(F6=AA16,E6),...)
Is that really the interpretation you intended? Or did you
intend something like:
=SUM(IF(OR(F4=AA14,F4=AA15,...,F4=AA23),E4),
IF(OR(F5=AA14,F5=AA15,....,F5=AA23),E5),...)-
For the latter interpretation, array-enter the following formula (pres
ctrl+shift+Enter instead of just Enter):
=SUM(IF(J.Adams!$F$4:$F$24=TRANSPOSE(Summary!$AA$14:$AA$23),J.Adams!$E$4:$E$24))
When array-entered, you should curly braces around the entire formul
(i.e.
{=formula}) when it is displayed in the Formula Bar. You cannot typ
the
curly braces yourself; that is just Excel's way of identifying th
formula
as array-entered.
Been a while since I worked on this and I still have not figured i
out.
Yes I am array entering the formula.
Now I have another example that will hopefully put it into bette
perspective as to what Im attempting to do.
=SUM(IF(J.Gutierrez!$F$4:$F$24=(Summary!$AA$14),(J.Gutierrez!$E$4:$E$24))
SUM(IF(J.Gutierrez!$F$4:$F$24=(Summary!$AA$15),(J.Gutierrez!$E$4:$E$24))
SUM(IF(J.Gutierrez!$F$4:$F$24=(Summary!$AA$16),(J.Gutierrez!$E$4:$E$24))
SUM(IF(J.Gutierrez!$F$4:$F$24=(Summary!$AA$17),(J.Gutierrez!$E$4:$E$24))
SUM(IF(J.Gutierrez!$F$4:$F$24=(Summary!$AA$18),(J.Gutierrez!$E$4:$E$24))
SUM(IF(J.Gutierrez!$F$4:$F$24=(Summary!$AA$19),(J.Gutierrez!$E$4:$E$24))
SUM(IF(J.Gutierrez!$F$4:$F$24=(Summary!$AA$20),(J.Gutierrez!$E$4:$E$24))
SUM(IF(J.Gutierrez!$F$4:$F$24=(Summary!$AA$21),(J.Gutierrez!$E$4:$E$24))
SUM(IF(J.Gutierrez!$F$4:$F$24=(Summary!$AA$22),(J.Gutierrez!$E$4:$E$24))
SUM(IF(J.Gutierrez!$F$4:$F$24=(Summary!$AA$23),(J.Gutierrez!$E$4:$E$24)))
EXAMPLE: Now the above formula performs what Im trying to accomplish
but in longhand, and only does it for one day as where I need to tota
14 days of the pay period, and I need to do it for 8 other employees
Now creating a formula that is 14 times longer than this seems a bi
extreme.
GOAL: Im managing a time card, and this time card has a column for th
time, and a dropdown in the next cell for the duty performed during tha
time frame. Now I want to create a summary report that will filter ou
and total up any overtime duties selected from the dropdown. In thi
instance there are 10 Overtime Cells (AA14:AA23)
The longhand version shown above has me copying the formula 10 time
over so I can individually designate the 10 overtime cells.
SUM(IF(J.Gutierrez!$F$4:$F$24=(Summary!$AA$14:$AA$23),(J.Gutierrez!$E$4:$E$24)))
Thinking I could save myself the trouble I tried to enter this formul
above which includes the entire range of cells instead of doing the
individually... and logically I feel it should work, but it returns a
N/A error that says "value is not available to the formula or function.
WHAT GIVES?! I cant figure this out. Can i get some assistance please
Thanks in advanc