JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser .
formula help
Thread starter
Thread starter
Guest
Start date
Start date
Feb 3, 2004
I need a formula to average the results in column AB, when thwe results in column B = 2000, and when the results in column D are <60. I tried this with no luck. =AVG((B2:B492=2000),(D2
492<60),AB:AB492)
Try the following array formula:
=AVERAGE(IF((B2:B492=2000)*(D2
492<60),AB2:AB492,""))
You'll need to hit Ctrl-Shift-Enter instead of just Enter after pasting or
typing in the formula.
/i.
GTK said:
I need a formula to average the results in column AB, when thwe results in
column B = 2000, and when the results in column D are <60. I tried this
with no luck. =AVG((B2:B492=2000),(D2
492<60),AB:AB492)