Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 29
Default Too Many Variables

Okay I've got dates in column A, column L has the number of days since the
column A date, and column N has text that says either "maint*" or "ent*."
I'm using the following formula to calculate the average number of days in
column L for specific dates in column A:

=(SUMIF(Active!A10:A1000,"<39052",Active!L10:L1000 ))/(COUNTIF(Active!A10:A1000,"<39052"))

It seems to work fine--I get the average number of days that items dated
before 12/2006 have listed in column L.

Now, I need to get the average number of days listed in column L for records
where both the date in column A is before 12/2006, AND the text in column M
is "maint*." It's too many variables to get my head wrapped around. Can
anyone please help? Hope this is clear enough...

Thanks,
Mike
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Too Many Variables

=AVERAGE(IF((Active!A10:A1000<--"2006-12-01")*(Active!M10:M1000="maint*"),Active!L10:L1000) )

which is an array formula, so commit with Ctrl-Shift-Enter, not just Enter.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Heliocracy" wrote in message
...
Okay I've got dates in column A, column L has the number of days since the
column A date, and column N has text that says either "maint*" or "ent*."
I'm using the following formula to calculate the average number of days in
column L for specific dates in column A:

=(SUMIF(Active!A10:A1000,"<39052",Active!L10:L1000 ))/(COUNTIF(Active!A10:A1000,"<39052"))

It seems to work fine--I get the average number of days that items dated
before 12/2006 have listed in column L.

Now, I need to get the average number of days listed in column L for
records
where both the date in column A is before 12/2006, AND the text in column
M
is "maint*." It's too many variables to get my head wrapped around. Can
anyone please help? Hope this is clear enough...

Thanks,
Mike



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 29
Default Too Many Variables

Thanks, that seems to work. Can you give me a better formulation for the
formula I provided in my original post (the one that does the same thing
without worrying about what's in column M)? I really appreciate your help.

Thanks,
Mike

"Bob Phillips" wrote:

=AVERAGE(IF((Active!A10:A1000<--"2006-12-01")*(Active!M10:M1000="maint*"),Active!L10:L1000) )

which is an array formula, so commit with Ctrl-Shift-Enter, not just Enter.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Heliocracy" wrote in message
...
Okay I've got dates in column A, column L has the number of days since the
column A date, and column N has text that says either "maint*" or "ent*."
I'm using the following formula to calculate the average number of days in
column L for specific dates in column A:

=(SUMIF(Active!A10:A1000,"<39052",Active!L10:L1000 ))/(COUNTIF(Active!A10:A1000,"<39052"))

It seems to work fine--I get the average number of days that items dated
before 12/2006 have listed in column L.

Now, I need to get the average number of days listed in column L for
records
where both the date in column A is before 12/2006, AND the text in column
M
is "maint*." It's too many variables to get my head wrapped around. Can
anyone please help? Hope this is clear enough...

Thanks,
Mike




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Too Many Variables

=AVERAGE(IF(Active!A10:A1000,<--"2006-12-01",Active!L10:L1000))

again an array formula

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Heliocracy" wrote in message
...
Thanks, that seems to work. Can you give me a better formulation for the
formula I provided in my original post (the one that does the same thing
without worrying about what's in column M)? I really appreciate your
help.

Thanks,
Mike

"Bob Phillips" wrote:

=AVERAGE(IF((Active!A10:A1000<--"2006-12-01")*(Active!M10:M1000="maint*"),Active!L10:L1000) )

which is an array formula, so commit with Ctrl-Shift-Enter, not just
Enter.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Heliocracy" wrote in message
...
Okay I've got dates in column A, column L has the number of days since
the
column A date, and column N has text that says either "maint*" or
"ent*."
I'm using the following formula to calculate the average number of days
in
column L for specific dates in column A:

=(SUMIF(Active!A10:A1000,"<39052",Active!L10:L1000 ))/(COUNTIF(Active!A10:A1000,"<39052"))

It seems to work fine--I get the average number of days that items
dated
before 12/2006 have listed in column L.

Now, I need to get the average number of days listed in column L for
records
where both the date in column A is before 12/2006, AND the text in
column
M
is "maint*." It's too many variables to get my head wrapped around.
Can
anyone please help? Hope this is clear enough...

Thanks,
Mike






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 29
Default Too Many Variables

I'm afraid that formula returns an error. When I remove the comma between
A1000 and <--, it accepts the formula but gives me a non-sensical answer. I
am entering it as an array formula.

Thanks, Mike

"Bob Phillips" wrote:

=AVERAGE(IF(Active!A10:A1000,<--"2006-12-01",Active!L10:L1000))

again an array formula

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Heliocracy" wrote in message
...
Thanks, that seems to work. Can you give me a better formulation for the
formula I provided in my original post (the one that does the same thing
without worrying about what's in column M)? I really appreciate your
help.

Thanks,
Mike

"Bob Phillips" wrote:

=AVERAGE(IF((Active!A10:A1000<--"2006-12-01")*(Active!M10:M1000="maint*"),Active!L10:L1000) )

which is an array formula, so commit with Ctrl-Shift-Enter, not just
Enter.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Heliocracy" wrote in message
...
Okay I've got dates in column A, column L has the number of days since
the
column A date, and column N has text that says either "maint*" or
"ent*."
I'm using the following formula to calculate the average number of days
in
column L for specific dates in column A:

=(SUMIF(Active!A10:A1000,"<39052",Active!L10:L1000 ))/(COUNTIF(Active!A10:A1000,"<39052"))

It seems to work fine--I get the average number of days that items
dated
before 12/2006 have listed in column L.

Now, I need to get the average number of days listed in column L for
records
where both the date in column A is before 12/2006, AND the text in
column
M
is "maint*." It's too many variables to get my head wrapped around.
Can
anyone please help? Hope this is clear enough...

Thanks,
Mike








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Too Many Variables

Did you remember to enter the formula using ctrl-shift-enter?

What kind of error do you see?

Are there errors in A10:A1000 or L10:L1000?

Are you using USA English version of excel?

Maybe you don't use commas to separate the arguments?? (But that would have
caused an error in the original suggestion, too.)

Heliocracy wrote:

I'm afraid that formula returns an error. When I remove the comma between
A1000 and <--, it accepts the formula but gives me a non-sensical answer. I
am entering it as an array formula.

Thanks, Mike

"Bob Phillips" wrote:

=AVERAGE(IF(Active!A10:A1000,<--"2006-12-01",Active!L10:L1000))

again an array formula

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Heliocracy" wrote in message
...
Thanks, that seems to work. Can you give me a better formulation for the
formula I provided in my original post (the one that does the same thing
without worrying about what's in column M)? I really appreciate your
help.

Thanks,
Mike

"Bob Phillips" wrote:

=AVERAGE(IF((Active!A10:A1000<--"2006-12-01")*(Active!M10:M1000="maint*"),Active!L10:L1000) )

which is an array formula, so commit with Ctrl-Shift-Enter, not just
Enter.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Heliocracy" wrote in message
...
Okay I've got dates in column A, column L has the number of days since
the
column A date, and column N has text that says either "maint*" or
"ent*."
I'm using the following formula to calculate the average number of days
in
column L for specific dates in column A:

=(SUMIF(Active!A10:A1000,"<39052",Active!L10:L1000 ))/(COUNTIF(Active!A10:A1000,"<39052"))

It seems to work fine--I get the average number of days that items
dated
before 12/2006 have listed in column L.

Now, I need to get the average number of days listed in column L for
records
where both the date in column A is before 12/2006, AND the text in
column
M
is "maint*." It's too many variables to get my head wrapped around.
Can
anyone please help? Hope this is clear enough...

Thanks,
Mike







--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Too Many Variables

What nonsenseical answer is that?

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Heliocracy" wrote in message
...
I'm afraid that formula returns an error. When I remove the comma between
A1000 and <--, it accepts the formula but gives me a non-sensical answer.
I
am entering it as an array formula.

Thanks, Mike

"Bob Phillips" wrote:

=AVERAGE(IF(Active!A10:A1000,<--"2006-12-01",Active!L10:L1000))

again an array formula

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Heliocracy" wrote in message
...
Thanks, that seems to work. Can you give me a better formulation for
the
formula I provided in my original post (the one that does the same
thing
without worrying about what's in column M)? I really appreciate your
help.

Thanks,
Mike

"Bob Phillips" wrote:

=AVERAGE(IF((Active!A10:A1000<--"2006-12-01")*(Active!M10:M1000="maint*"),Active!L10:L1000) )

which is an array formula, so commit with Ctrl-Shift-Enter, not just
Enter.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Heliocracy" wrote in message
...
Okay I've got dates in column A, column L has the number of days
since
the
column A date, and column N has text that says either "maint*" or
"ent*."
I'm using the following formula to calculate the average number of
days
in
column L for specific dates in column A:

=(SUMIF(Active!A10:A1000,"<39052",Active!L10:L1000 ))/(COUNTIF(Active!A10:A1000,"<39052"))

It seems to work fine--I get the average number of days that items
dated
before 12/2006 have listed in column L.

Now, I need to get the average number of days listed in column L for
records
where both the date in column A is before 12/2006, AND the text in
column
M
is "maint*." It's too many variables to get my head wrapped around.
Can
anyone please help? Hope this is clear enough...

Thanks,
Mike








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
More than 1 Variables [email protected] Excel Discussion (Misc queries) 1 November 29th 06 02:09 AM
Variables in VBA Jeff Excel Discussion (Misc queries) 2 October 17th 06 02:30 PM
Using variables . . . Wayne Knazek Excel Discussion (Misc queries) 2 July 6th 06 05:01 PM
Too many variables? elite Excel Worksheet Functions 2 May 19th 06 10:26 PM
SUM IF and two variables Leigh Ann Excel Worksheet Functions 6 May 25th 05 03:24 AM


All times are GMT +1. The time now is 06:14 AM.

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"