Pete,
Thanks. this does what I need but for one little thing that I obviously
didn't explain clearly :-(
The text search piece might contain "New item" but will almost certainly
contain other text as well, so what I need is to do something like:
=SEARCH("New item",D1:D100)
but obviously, SEARCH doesn't work on range of cells :-(
Is there a way around this?
TIA
Dave
> Try this:
>
[quoted text clipped - 48 lines]
> >
> > Dave
Pete_UK - 11 Apr 2008 11:27 GMT
Try it this way:
=SUMPRODUCT(--(B1:B100="Open"),--(C1:C100>=TODAY()-30),--
(C1:C100<=TODAY()), --(ISNUMBER(SEARCH("New item",D1:D100))))
Hope this helps.
Pete
On Apr 11, 10:59 am, Risky Dave <RiskyD...@discussions.microsoft.com>
wrote:
> Pete,
>
[quoted text clipped - 68 lines]
>
> - Show quoted text -
Alexander Wolff - 11 Apr 2008 11:29 GMT
> The text search piece might contain "New item" but will almost
> certainly contain other text as well, so what I need is to do
[quoted text clipped - 3 lines]
>
> but obviously, SEARCH doesn't work on range of cells :-(
Instead of
...*(D1:D100="New item")...
try
...*(LEN(D1:D100)>LEN(SUBSTITUTE(D1:D100;"New item";)))...
Probably there are still better ones :-)

Signature
Moin+Gruss Alexander - MVP for MS Excel - www.xxcl.de - mso2000sp3 --7-2
Dave Peterson - 11 Apr 2008 11:29 GMT
=SUMPRODUCT((B1:B100="Open")
*(C1:C100>=TODAY()-30)
*(C1:C100<=TODAY())
*isnumber(search("new item",D1:D100)))
> Pete,
>
[quoted text clipped - 66 lines]
> > >
> > > Dave

Signature
Dave Peterson