Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jeremy Ellison
 
Posts: n/a
Default value of #'s in column if between dates

Here's what I have been trying:

=SUMPRODUCT((CaseData!C2:C1000=DATE(2005,10,1))*( CaseData!C2:C1000<=DATE(200,12,31))*(CaseData!AT2: AT1000="Heroin")*CaseData!AU2:AU1000)



for the follwoing data


C AT AU
1 Date DRUG Amount
2 10/1/5 Heroin 2.2
3 1/2/6 Heroin 5.5

I get a "VALUE" error when I run this...I want it to return 2.2 because row
2 is between the dates specified.


Any one know how to get it to work correctly? I/m lost!


IF I do come up with the answer for this... I will want it to then look at 2
more columkns with the same data... Example:

C AT AU AV
AW
1 Date DRUG Amount Drug2
Amount2
2 1/1/6 Heroin 2.2 Grams Meth
2.5
3 1/2/7 Heroin 5.5 Grams MJ
1.1

The formula will need to add AU & AW together, if C is between dates and
AT=a certain drug....

THanks!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jeremy Ellison
 
Posts: n/a
Default value of #'s in column if between dates

I used the circle invalid dat button and found some data in one of my columns
hat was incorrectly put in there. I then removed it and this gave me the
total of what i was looking for.

I will now try to combine my total of total 1 and total 2. feel free to
post if you have suggestions while i work on this. thank you.

"Jeremy Ellison" wrote:

Here's what I have been trying:

=SUMPRODUCT((CaseData!C2:C1000=DATE(2005,10,1))*( CaseData!C2:C1000<=DATE(200,12,31))*(CaseData!AT2: AT1000="Heroin")*CaseData!AU2:AU1000)



for the follwoing data


C AT AU
1 Date DRUG Amount
2 10/1/5 Heroin 2.2
3 1/2/6 Heroin 5.5

I get a "VALUE" error when I run this...I want it to return 2.2 because row
2 is between the dates specified.


Any one know how to get it to work correctly? I/m lost!


IF I do come up with the answer for this... I will want it to then look at 2
more columkns with the same data... Example:

C AT AU AV
AW
1 Date DRUG Amount Drug2
Amount2
2 1/1/6 Heroin 2.2 Grams Meth
2.5
3 1/2/7 Heroin 5.5 Grams MJ
1.1

The formula will need to add AU & AW together, if C is between dates and
AT=a certain drug....

THanks!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom
 
Posts: n/a
Default value of #'s in column if between dates

This part

CaseData!AU2:AU1000

must contain text, if you have values there derived by formulas then
something like =if(a12,2,"") where the result woul be "" would cause that
error, I also note that the formula you pasted has 200 as year in the second
condition DATE(200,12,31)
anyway to disregard text in AU you can change the formula to

=SUMPRODUCT(--(CaseData!C2:C1000=DATE(2005,10,1)),--(CaseData!C2:C1000<=DAT
E(2005,12,31)),--(CaseData!AT2:AT1000="Heroin"),CaseData!AU2:AU1000 )

if you get zero as result then the numbers in AU are text, copy an empty
cell, select the range and do editpaste special and select add
--

Regards,

Peo Sjoblom



"Jeremy Ellison" wrote in message
...
Here's what I have been trying:


=SUMPRODUCT((CaseData!C2:C1000=DATE(2005,10,1))*( CaseData!C2:C1000<=DATE(20
0,12,31))*(CaseData!AT2:AT1000="Heroin")*CaseData! AU2:AU1000)



for the follwoing data


C AT AU
1 Date DRUG Amount
2 10/1/5 Heroin 2.2
3 1/2/6 Heroin 5.5

I get a "VALUE" error when I run this...I want it to return 2.2 because

row
2 is between the dates specified.


Any one know how to get it to work correctly? I/m lost!


IF I do come up with the answer for this... I will want it to then look at

2
more columkns with the same data... Example:

C AT AU

AV
AW
1 Date DRUG Amount Drug2
Amount2
2 1/1/6 Heroin 2.2 Grams Meth
2.5
3 1/2/7 Heroin 5.5 Grams MJ
1.1

The formula will need to add AU & AW together, if C is between dates and
AT=a certain drug....

THanks!



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jeremy Ellison
 
Posts: n/a
Default value of #'s in column if between dates

I really like your formula. I was trying to get rid of the "12-12-2005" data
format and didn't know how. I used yours' -- I used your formula without
control shift enter and got the right amount. was this a fluke and should I
continue to enter it as an array formula or is it not necessary?

Thanks....

"Peo Sjoblom" wrote:

This part

CaseData!AU2:AU1000

must contain text, if you have values there derived by formulas then
something like =if(a12,2,"") where the result woul be "" would cause that
error, I also note that the formula you pasted has 200 as year in the second
condition DATE(200,12,31)
anyway to disregard text in AU you can change the formula to

=SUMPRODUCT(--(CaseData!C2:C1000=DATE(2005,10,1)),--(CaseData!C2:C1000<=DAT
E(2005,12,31)),--(CaseData!AT2:AT1000="Heroin"),CaseData!AU2:AU1000 )

if you get zero as result then the numbers in AU are text, copy an empty
cell, select the range and do editpaste special and select add
--

Regards,

Peo Sjoblom



"Jeremy Ellison" wrote in message
...
Here's what I have been trying:


=SUMPRODUCT((CaseData!C2:C1000=DATE(2005,10,1))*( CaseData!C2:C1000<=DATE(20
0,12,31))*(CaseData!AT2:AT1000="Heroin")*CaseData! AU2:AU1000)



for the follwoing data


C AT AU
1 Date DRUG Amount
2 10/1/5 Heroin 2.2
3 1/2/6 Heroin 5.5

I get a "VALUE" error when I run this...I want it to return 2.2 because

row
2 is between the dates specified.


Any one know how to get it to work correctly? I/m lost!


IF I do come up with the answer for this... I will want it to then look at

2
more columkns with the same data... Example:

C AT AU

AV
AW
1 Date DRUG Amount Drug2
Amount2
2 1/1/6 Heroin 2.2 Grams Meth
2.5
3 1/2/7 Heroin 5.5 Grams MJ
1.1

The formula will need to add AU & AW together, if C is between dates and
AT=a certain drug....

THanks!




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jeremy Ellison
 
Posts: n/a
Default value of #'s in column if between dates

NOW - Is there a way to search the text for certain characters...put a wild
card in there?

the drug column has Cocaine and "Crack" Cocaine
in the column. I can't put in "crack" cocaine as the variable to search
for because I have the quotation marks around crack.

How can i get it to find this string without changing the column "crack"
cocaine to something else.

"Peo Sjoblom" wrote:

This part

CaseData!AU2:AU1000

must contain text, if you have values there derived by formulas then
something like =if(a12,2,"") where the result woul be "" would cause that
error, I also note that the formula you pasted has 200 as year in the second
condition DATE(200,12,31)
anyway to disregard text in AU you can change the formula to

=SUMPRODUCT(--(CaseData!C2:C1000=DATE(2005,10,1)),--(CaseData!C2:C1000<=DAT
E(2005,12,31)),--(CaseData!AT2:AT1000="Heroin"),CaseData!AU2:AU1000 )

if you get zero as result then the numbers in AU are text, copy an empty
cell, select the range and do editpaste special and select add
--

Regards,

Peo Sjoblom



"Jeremy Ellison" wrote in message
...
Here's what I have been trying:


=SUMPRODUCT((CaseData!C2:C1000=DATE(2005,10,1))*( CaseData!C2:C1000<=DATE(20
0,12,31))*(CaseData!AT2:AT1000="Heroin")*CaseData! AU2:AU1000)



for the follwoing data


C AT AU
1 Date DRUG Amount
2 10/1/5 Heroin 2.2
3 1/2/6 Heroin 5.5

I get a "VALUE" error when I run this...I want it to return 2.2 because

row
2 is between the dates specified.


Any one know how to get it to work correctly? I/m lost!


IF I do come up with the answer for this... I will want it to then look at

2
more columkns with the same data... Example:

C AT AU

AV
AW
1 Date DRUG Amount Drug2
Amount2
2 1/1/6 Heroin 2.2 Grams Meth
2.5
3 1/2/7 Heroin 5.5 Grams MJ
1.1

The formula will need to add AU & AW together, if C is between dates and
AT=a certain drug....

THanks!






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom
 
Posts: n/a
Default value of #'s in column if between dates

No need to array enter it

--

Regards,

Peo Sjoblom

"Jeremy Ellison" wrote in message
...
I really like your formula. I was trying to get rid of the "12-12-2005"

data
format and didn't know how. I used yours' -- I used your formula

without
control shift enter and got the right amount. was this a fluke and

should I
continue to enter it as an array formula or is it not necessary?

Thanks....

"Peo Sjoblom" wrote:

This part

CaseData!AU2:AU1000

must contain text, if you have values there derived by formulas then
something like =if(a12,2,"") where the result woul be "" would cause

that
error, I also note that the formula you pasted has 200 as year in the

second
condition DATE(200,12,31)
anyway to disregard text in AU you can change the formula to


=SUMPRODUCT(--(CaseData!C2:C1000=DATE(2005,10,1)),--(CaseData!C2:C1000<=DAT
E(2005,12,31)),--(CaseData!AT2:AT1000="Heroin"),CaseData!AU2:AU1000 )

if you get zero as result then the numbers in AU are text, copy an empty
cell, select the range and do editpaste special and select add
--

Regards,

Peo Sjoblom



"Jeremy Ellison" wrote in

message
...
Here's what I have been trying:



=SUMPRODUCT((CaseData!C2:C1000=DATE(2005,10,1))*( CaseData!C2:C1000<=DATE(20
0,12,31))*(CaseData!AT2:AT1000="Heroin")*CaseData! AU2:AU1000)



for the follwoing data


C AT AU
1 Date DRUG Amount
2 10/1/5 Heroin 2.2
3 1/2/6 Heroin 5.5

I get a "VALUE" error when I run this...I want it to return 2.2

because
row
2 is between the dates specified.


Any one know how to get it to work correctly? I/m lost!


IF I do come up with the answer for this... I will want it to then

look at
2
more columkns with the same data... Example:

C AT AU

AV
AW
1 Date DRUG Amount Drug2
Amount2
2 1/1/6 Heroin 2.2 Grams Meth
2.5
3 1/2/7 Heroin 5.5 Grams MJ
1.1

The formula will need to add AU & AW together, if C is between dates

and
AT=a certain drug....

THanks!






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom
 
Posts: n/a
Default value of #'s in column if between dates

You can use this

--(ISNUMBER(SEARCH("cocaine",CaseData!AT2:AT1000)))


--

Regards,

Peo Sjoblom





"Jeremy Ellison" wrote in message
...
NOW - Is there a way to search the text for certain characters...put a

wild
card in there?

the drug column has Cocaine and "Crack" Cocaine
in the column. I can't put in "crack" cocaine as the variable to search
for because I have the quotation marks around crack.

How can i get it to find this string without changing the column "crack"
cocaine to something else.

"Peo Sjoblom" wrote:

This part

CaseData!AU2:AU1000

must contain text, if you have values there derived by formulas then
something like =if(a12,2,"") where the result woul be "" would cause

that
error, I also note that the formula you pasted has 200 as year in the

second
condition DATE(200,12,31)
anyway to disregard text in AU you can change the formula to


=SUMPRODUCT(--(CaseData!C2:C1000=DATE(2005,10,1)),--(CaseData!C2:C1000<=DAT
E(2005,12,31)),--(CaseData!AT2:AT1000="Heroin"),CaseData!AU2:AU1000 )

if you get zero as result then the numbers in AU are text, copy an empty
cell, select the range and do editpaste special and select add
--

Regards,

Peo Sjoblom



"Jeremy Ellison" wrote in

message
...
Here's what I have been trying:



=SUMPRODUCT((CaseData!C2:C1000=DATE(2005,10,1))*( CaseData!C2:C1000<=DATE(20
0,12,31))*(CaseData!AT2:AT1000="Heroin")*CaseData! AU2:AU1000)



for the follwoing data


C AT AU
1 Date DRUG Amount
2 10/1/5 Heroin 2.2
3 1/2/6 Heroin 5.5

I get a "VALUE" error when I run this...I want it to return 2.2

because
row
2 is between the dates specified.


Any one know how to get it to work correctly? I/m lost!


IF I do come up with the answer for this... I will want it to then

look at
2
more columkns with the same data... Example:

C AT AU

AV
AW
1 Date DRUG Amount Drug2
Amount2
2 1/1/6 Heroin 2.2 Grams Meth
2.5
3 1/2/7 Heroin 5.5 Grams MJ
1.1

The formula will need to add AU & AW together, if C is between dates

and
AT=a certain drug....

THanks!






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jeremy Ellison
 
Posts: n/a
Default value of #'s in column if between dates

AWESOME. Thank you... . playing around with this stuff really helps me
learn. I really appreciate all your help (and everyone else who has been
sending me things on here also!)

Thanks again!

"Peo Sjoblom" wrote:

You can use this

--(ISNUMBER(SEARCH("cocaine",CaseData!AT2:AT1000)))


--

Regards,

Peo Sjoblom





"Jeremy Ellison" wrote in message
...
NOW - Is there a way to search the text for certain characters...put a

wild
card in there?

the drug column has Cocaine and "Crack" Cocaine
in the column. I can't put in "crack" cocaine as the variable to search
for because I have the quotation marks around crack.

How can i get it to find this string without changing the column "crack"
cocaine to something else.

"Peo Sjoblom" wrote:

This part

CaseData!AU2:AU1000

must contain text, if you have values there derived by formulas then
something like =if(a12,2,"") where the result woul be "" would cause

that
error, I also note that the formula you pasted has 200 as year in the

second
condition DATE(200,12,31)
anyway to disregard text in AU you can change the formula to


=SUMPRODUCT(--(CaseData!C2:C1000=DATE(2005,10,1)),--(CaseData!C2:C1000<=DAT
E(2005,12,31)),--(CaseData!AT2:AT1000="Heroin"),CaseData!AU2:AU1000 )

if you get zero as result then the numbers in AU are text, copy an empty
cell, select the range and do editpaste special and select add
--

Regards,

Peo Sjoblom



"Jeremy Ellison" wrote in

message
...
Here's what I have been trying:



=SUMPRODUCT((CaseData!C2:C1000=DATE(2005,10,1))*( CaseData!C2:C1000<=DATE(20
0,12,31))*(CaseData!AT2:AT1000="Heroin")*CaseData! AU2:AU1000)



for the follwoing data


C AT AU
1 Date DRUG Amount
2 10/1/5 Heroin 2.2
3 1/2/6 Heroin 5.5

I get a "VALUE" error when I run this...I want it to return 2.2

because
row
2 is between the dates specified.


Any one know how to get it to work correctly? I/m lost!


IF I do come up with the answer for this... I will want it to then

look at
2
more columkns with the same data... Example:

C AT AU
AV
AW
1 Date DRUG Amount Drug2
Amount2
2 1/1/6 Heroin 2.2 Grams Meth
2.5
3 1/2/7 Heroin 5.5 Grams MJ
1.1

The formula will need to add AU & AW together, if C is between dates

and
AT=a certain drug....

THanks!






  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom
 
Posts: n/a
Default value of #'s in column if between dates

Thanks for the feedback


--

Regards,

Peo Sjoblom


"Jeremy Ellison" wrote in message
...
AWESOME. Thank you... . playing around with this stuff really helps me
learn. I really appreciate all your help (and everyone else who has been
sending me things on here also!)

Thanks again!

"Peo Sjoblom" wrote:

You can use this

--(ISNUMBER(SEARCH("cocaine",CaseData!AT2:AT1000)))


--

Regards,

Peo Sjoblom





"Jeremy Ellison" wrote in

message
...
NOW - Is there a way to search the text for certain characters...put

a
wild
card in there?

the drug column has Cocaine and "Crack" Cocaine
in the column. I can't put in "crack" cocaine as the variable to

search
for because I have the quotation marks around crack.

How can i get it to find this string without changing the column

"crack"
cocaine to something else.

"Peo Sjoblom" wrote:

This part

CaseData!AU2:AU1000

must contain text, if you have values there derived by formulas then
something like =if(a12,2,"") where the result woul be "" would

cause
that
error, I also note that the formula you pasted has 200 as year in

the
second
condition DATE(200,12,31)
anyway to disregard text in AU you can change the formula to



=SUMPRODUCT(--(CaseData!C2:C1000=DATE(2005,10,1)),--(CaseData!C2:C1000<=DAT
E(2005,12,31)),--(CaseData!AT2:AT1000="Heroin"),CaseData!AU2:AU1000 )

if you get zero as result then the numbers in AU are text, copy an

empty
cell, select the range and do editpaste special and select add
--

Regards,

Peo Sjoblom



"Jeremy Ellison" wrote in

message
...
Here's what I have been trying:




=SUMPRODUCT((CaseData!C2:C1000=DATE(2005,10,1))*( CaseData!C2:C1000<=DATE(20
0,12,31))*(CaseData!AT2:AT1000="Heroin")*CaseData! AU2:AU1000)



for the follwoing data


C AT AU
1 Date DRUG Amount
2 10/1/5 Heroin 2.2
3 1/2/6 Heroin 5.5

I get a "VALUE" error when I run this...I want it to return 2.2

because
row
2 is between the dates specified.


Any one know how to get it to work correctly? I/m lost!


IF I do come up with the answer for this... I will want it to then

look at
2
more columkns with the same data... Example:

C AT AU
AV
AW
1 Date DRUG Amount

Drug2
Amount2
2 1/1/6 Heroin 2.2 Grams

Meth
2.5
3 1/2/7 Heroin 5.5 Grams MJ
1.1

The formula will need to add AU & AW together, if C is between

dates
and
AT=a certain drug....

THanks!








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
How to count dates within a certain range in a column with mutiple date range entries Krisjhn Excel Worksheet Functions 2 September 1st 05 01:59 PM
Lookup Table Dilemma Karen Excel Worksheet Functions 2 June 10th 05 08:22 PM
I need a formula to sum column b if column a is between two dates Pam Excel Discussion (Misc queries) 0 April 18th 05 05:33 PM
How to dates column with values in next column Carlton A. Barlow Excel Discussion (Misc queries) 1 April 18th 05 04:28 AM
Can I change a column of dates from USA to UK format? Michelle, Mencap Excel Discussion (Misc queries) 3 March 2nd 05 04:02 PM


All times are GMT +1. The time now is 07:26 AM.

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

About Us

"It's about Microsoft Excel"