Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
roy.okinawa
 
Posts: n/a
Default Finding total via entered text

I have a formula that will will search and give me the totals for the month
and text listed in specific cells:

=SUMPRODUCT(--(MONTH(O31:O1001)=MONTH(AV38)),--(ISNUMBER(SEARCH(AT43,S31:S1001))))

Is it possible to modify the month portion of this formula to check for a
number entered, such as 29025? So the formula would look something like
this:

=SUMPRODUCT(--(NUMBER(O31:O1001)=NUMBER(AV38)),--(ISNUMBER(SEARCH(AT43,S31:S1001))))


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Biff
 
Posts: n/a
Default Finding total via entered text

Hi!

It looks like your formula is "searching" a range of dates in O31:O1001 for
a certain month.

If they are true Excel dates then in reality they are simply numbers.

If you want to "search" for numbers like 29025 (date equivalent is
6/19/1979)

=SUMPRODUCT(--(O31:O1001=29025),--(ISNUMBER(SEARCH(AT43,S31:S1001))))

Biff

"roy.okinawa" wrote in message
...
I have a formula that will will search and give me the totals for the month
and text listed in specific cells:

=SUMPRODUCT(--(MONTH(O31:O1001)=MONTH(AV38)),--(ISNUMBER(SEARCH(AT43,S31:S1001))))

Is it possible to modify the month portion of this formula to check for a
number entered, such as 29025? So the formula would look something like
this:

=SUMPRODUCT(--(NUMBER(O31:O1001)=NUMBER(AV38)),--(ISNUMBER(SEARCH(AT43,S31:S1001))))




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
roy.okinawa
 
Posts: n/a
Default Finding total via entered text

That works great. However, just has I have the formula that allows me to
manually enter the month (AV38) and word (AT43), I was looking for a formula
that would allow me to manually enter the search numbers in AV38 and AT43 and
get a similiar result.

The backend of the formula is no problem:
--(ISNUMBER(SEARCH(AT43,S31:S1001))))

I need the front end: --(MONTH(O31:O1001)=MONTH(AV38)) where it looks for a
specific number through cells O31:O1001 when I enter that number in AV38.


"Biff" wrote:

Hi!

It looks like your formula is "searching" a range of dates in O31:O1001 for
a certain month.

If they are true Excel dates then in reality they are simply numbers.

If you want to "search" for numbers like 29025 (date equivalent is
6/19/1979)

=SUMPRODUCT(--(O31:O1001=29025),--(ISNUMBER(SEARCH(AT43,S31:S1001))))

Biff

"roy.okinawa" wrote in message
...
I have a formula that will will search and give me the totals for the month
and text listed in specific cells:

=SUMPRODUCT(--(MONTH(O31:O1001)=MONTH(AV38)),--(ISNUMBER(SEARCH(AT43,S31:S1001))))

Is it possible to modify the month portion of this formula to check for a
number entered, such as 29025? So the formula would look something like
this:

=SUMPRODUCT(--(NUMBER(O31:O1001)=NUMBER(AV38)),--(ISNUMBER(SEARCH(AT43,S31:S1001))))





  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Biff
 
Posts: n/a
Default Finding total via entered text

Hi!

One of us is not understanding the other.

If you enter a value, 29025, into AV38:

=SUMPRODUCT(--(O31:O1001=AV38),--(ISNUMBER(SEARCH(AT43,S31:S1001))))

Will COUNT all occurrences where the corresponding values are equal to AV38
and AT43 in the respective ranges.

Biff

"roy.okinawa" wrote in message
...
That works great. However, just has I have the formula that allows me to
manually enter the month (AV38) and word (AT43), I was looking for a
formula
that would allow me to manually enter the search numbers in AV38 and AT43
and
get a similiar result.

The backend of the formula is no problem:
--(ISNUMBER(SEARCH(AT43,S31:S1001))))

I need the front end: --(MONTH(O31:O1001)=MONTH(AV38)) where it looks for
a
specific number through cells O31:O1001 when I enter that number in AV38.


"Biff" wrote:

Hi!

It looks like your formula is "searching" a range of dates in O31:O1001
for
a certain month.

If they are true Excel dates then in reality they are simply numbers.

If you want to "search" for numbers like 29025 (date equivalent is
6/19/1979)

=SUMPRODUCT(--(O31:O1001=29025),--(ISNUMBER(SEARCH(AT43,S31:S1001))))

Biff

"roy.okinawa" wrote in message
...
I have a formula that will will search and give me the totals for the
month
and text listed in specific cells:

=SUMPRODUCT(--(MONTH(O31:O1001)=MONTH(AV38)),--(ISNUMBER(SEARCH(AT43,S31:S1001))))

Is it possible to modify the month portion of this formula to check for
a
number entered, such as 29025? So the formula would look something
like
this:

=SUMPRODUCT(--(NUMBER(O31:O1001)=NUMBER(AV38)),--(ISNUMBER(SEARCH(AT43,S31:S1001))))







  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
roy.okinawa
 
Posts: n/a
Default Finding total via entered text

Thanks. That did it. The second change was what I needed.

Appreciate your assistance.

"Biff" wrote:

Hi!

One of us is not understanding the other.

If you enter a value, 29025, into AV38:

=SUMPRODUCT(--(O31:O1001=AV38),--(ISNUMBER(SEARCH(AT43,S31:S1001))))

Will COUNT all occurrences where the corresponding values are equal to AV38
and AT43 in the respective ranges.

Biff

"roy.okinawa" wrote in message
...
That works great. However, just has I have the formula that allows me to
manually enter the month (AV38) and word (AT43), I was looking for a
formula
that would allow me to manually enter the search numbers in AV38 and AT43
and
get a similiar result.

The backend of the formula is no problem:
--(ISNUMBER(SEARCH(AT43,S31:S1001))))

I need the front end: --(MONTH(O31:O1001)=MONTH(AV38)) where it looks for
a
specific number through cells O31:O1001 when I enter that number in AV38.


"Biff" wrote:

Hi!

It looks like your formula is "searching" a range of dates in O31:O1001
for
a certain month.

If they are true Excel dates then in reality they are simply numbers.

If you want to "search" for numbers like 29025 (date equivalent is
6/19/1979)

=SUMPRODUCT(--(O31:O1001=29025),--(ISNUMBER(SEARCH(AT43,S31:S1001))))

Biff

"roy.okinawa" wrote in message
...
I have a formula that will will search and give me the totals for the
month
and text listed in specific cells:

=SUMPRODUCT(--(MONTH(O31:O1001)=MONTH(AV38)),--(ISNUMBER(SEARCH(AT43,S31:S1001))))

Is it possible to modify the month portion of this formula to check for
a
number entered, such as 29025? So the formula would look something
like
this:

=SUMPRODUCT(--(NUMBER(O31:O1001)=NUMBER(AV38)),--(ISNUMBER(SEARCH(AT43,S31:S1001))))








Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel will not show all text entered in a Cell merged from 9 rows Pat Excel Discussion (Misc queries) 6 August 18th 05 11:14 PM
Count Intervals of Filtered TEXT values in Column and Return Count across a Row Sam via OfficeKB.com Excel Worksheet Functions 9 July 31st 05 03:37 AM
Finding Specific Text in a Text String Peter Gundrum Excel Worksheet Functions 9 April 10th 05 07:21 PM
Read Text File into Excel Using VBA Willie T Excel Discussion (Misc queries) 13 January 8th 05 12:37 AM
Total remaining formula jbsand1001 Excel Worksheet Functions 2 January 6th 05 04:17 PM


All times are GMT +1. The time now is 11:44 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"