ebilbrough
Board Regular
- Joined
- Nov 17, 2010
- Messages
- 61
- Office Version
- 365
- Platform
- Windows
I'm running Excel2010 and have the following array formula:
=AVERAGE(IF(NW100Database!$R$5:$R$173>="1/1/07"+0,
IF(NW100Database!$R$5:$R$173<"08/01/2011"+0,
NW100Database!$T$5:$T$173)))
Which works fine. I want to also create a formula that ignores any value in COL R that does not equal TODAY. I've added a line so the formula no looks like this:
=AVERAGE(IF(NW100Database!$R$5:$R$173>="1/1/07"+0,
IF(NW100Database!$R$5:$R$173<"08/01/2011"+0,
NW100Database!$R$5:$R$173<> TODAY(),
NW100Database!$T$5:$T$173)))
This results in a #DIV/0! error.
Any help resolving this is greatly appreciated. Thanks.
=AVERAGE(IF(NW100Database!$R$5:$R$173>="1/1/07"+0,
IF(NW100Database!$R$5:$R$173<"08/01/2011"+0,
NW100Database!$T$5:$T$173)))
Which works fine. I want to also create a formula that ignores any value in COL R that does not equal TODAY. I've added a line so the formula no looks like this:
=AVERAGE(IF(NW100Database!$R$5:$R$173>="1/1/07"+0,
IF(NW100Database!$R$5:$R$173<"08/01/2011"+0,
NW100Database!$R$5:$R$173<> TODAY(),
NW100Database!$T$5:$T$173)))
This results in a #DIV/0! error.
Any help resolving this is greatly appreciated. Thanks.