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

I have 31 sheet tabs that I have to sum, average and find the minimum &
maximum of 100 cells of data. I want to create a separate sheet that has all
of these stats. I tried calculating all this data and I'm getting and error
message:

The formula you typed contains an error:
1. For more information about fixing common problems, click help.
2. To get assistance in entering a function, click OK then click function on
the Insert menu.
3. If you are not trying to enter a formula, avoid using an equal sign or
minus sign or precede it with a single quotation.

Are there too many cells of data? Am I trying to calculate too many
arguments? HELP!



  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Possibly Too Many Arguments

If you show us the formula which you are trying to use, we might be able to
help.
Don't try to retype it; copy it from your formula bar and paste here.
--
David Biddulph

"Karen" wrote in message
...
I have 31 sheet tabs that I have to sum, average and find the minimum &
maximum of 100 cells of data. I want to create a separate sheet that has
all
of these stats. I tried calculating all this data and I'm getting and
error
message:

The formula you typed contains an error:
1. For more information about fixing common problems, click help.
2. To get assistance in entering a function, click OK then click function
on
the Insert menu.
3. If you are not trying to enter a formula, avoid using an equal sign or
minus sign or precede it with a single quotation.

Are there too many cells of data? Am I trying to calculate too many
arguments? HELP!





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

Thank you for your help David.
=AVERAGE('1'!F4:F8,'1'!F11,'3'!F4:F6,'3'!F8:F11,'4 '!F4,'5'!F4:F7,'6'!F4:F5,'7'!F4:F6,'8'!F4:F7,'8'!F 11,'10'!F4:F10,'10'!F12,'11'!F4,'12'!F4:F6,'13'!F4 :F5,'14'!F4:F6,'15'!F4:F7,'15'!F10,'17'!F4:F8,'17' !F11,'18'!F4,'19'!F4:F7,'20'!F4:F5,'21'!F4:F6,'22' !F4:F9,'22'!F11,'24'!F4:F9,'24'!F11,'26'!F4:F6,'27 '!F4:F5,'28'!F4:F5,'29'!F4:F9,'29'!F11,'31'!F4:F8, '31'!F11)


"David Biddulph" wrote:

If you show us the formula which you are trying to use, we might be able to
help.
Don't try to retype it; copy it from your formula bar and paste here.
--
David Biddulph

"Karen" wrote in message
...
I have 31 sheet tabs that I have to sum, average and find the minimum &
maximum of 100 cells of data. I want to create a separate sheet that has
all
of these stats. I tried calculating all this data and I'm getting and
error
message:

The formula you typed contains an error:
1. For more information about fixing common problems, click help.
2. To get assistance in entering a function, click OK then click function
on
the Insert menu.
3. If you are not trying to enter a formula, avoid using an equal sign or
minus sign or precede it with a single quotation.

Are there too many cells of data? Am I trying to calculate too many
arguments? HELP!






  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Possibly Too Many Arguments

Karen,

If there was a recurring pattern to the cells you want to average it would
be relatively simple but I can't see any pattern at all.

So you still need a solution and here's how I'd do it. I would use a
'Helper' worksheet or an unused part of an existing worksheet and create
formula to pull these values into a contiguous range and would then average
that range.

For example

=SUM('1'!F4:F8,'1'!F11)
Takes care of the first part of your formula

Hope this helps.

Mike

"Karen" wrote:

Thank you for your help David.
=AVERAGE('1'!F4:F8,'1'!F11,'3'!F4:F6,'3'!F8:F11,'4 '!F4,'5'!F4:F7,'6'!F4:F5,'7'!F4:F6,'8'!F4:F7,'8'!F 11,'10'!F4:F10,'10'!F12,'11'!F4,'12'!F4:F6,'13'!F4 :F5,'14'!F4:F6,'15'!F4:F7,'15'!F10,'17'!F4:F8,'17' !F11,'18'!F4,'19'!F4:F7,'20'!F4:F5,'21'!F4:F6,'22' !F4:F9,'22'!F11,'24'!F4:F9,'24'!F11,'26'!F4:F6,'27 '!F4:F5,'28'!F4:F5,'29'!F4:F9,'29'!F11,'31'!F4:F8, '31'!F11)


"David Biddulph" wrote:

If you show us the formula which you are trying to use, we might be able to
help.
Don't try to retype it; copy it from your formula bar and paste here.
--
David Biddulph

"Karen" wrote in message
...
I have 31 sheet tabs that I have to sum, average and find the minimum &
maximum of 100 cells of data. I want to create a separate sheet that has
all
of these stats. I tried calculating all this data and I'm getting and
error
message:

The formula you typed contains an error:
1. For more information about fixing common problems, click help.
2. To get assistance in entering a function, click OK then click function
on
the Insert menu.
3. If you are not trying to enter a formula, avoid using an equal sign or
minus sign or precede it with a single quotation.

Are there too many cells of data? Am I trying to calculate too many
arguments? HELP!






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Possibly Too Many Arguments

Karen,

I just noticed that you are collecting diferent number of cells from each
sheet so the approach i suggested wont work. Instead yoo can bring each cell
back to a contiguous range on the same sheet e.g.

='1'!f4
='1'!f5
='1'!f6

etc

and then average that range

Mike

"Mike H" wrote:

Karen,

If there was a recurring pattern to the cells you want to average it would
be relatively simple but I can't see any pattern at all.

So you still need a solution and here's how I'd do it. I would use a
'Helper' worksheet or an unused part of an existing worksheet and create
formula to pull these values into a contiguous range and would then average
that range.

For example

=SUM('1'!F4:F8,'1'!F11)
Takes care of the first part of your formula

Hope this helps.

Mike

"Karen" wrote:

Thank you for your help David.
=AVERAGE('1'!F4:F8,'1'!F11,'3'!F4:F6,'3'!F8:F11,'4 '!F4,'5'!F4:F7,'6'!F4:F5,'7'!F4:F6,'8'!F4:F7,'8'!F 11,'10'!F4:F10,'10'!F12,'11'!F4,'12'!F4:F6,'13'!F4 :F5,'14'!F4:F6,'15'!F4:F7,'15'!F10,'17'!F4:F8,'17' !F11,'18'!F4,'19'!F4:F7,'20'!F4:F5,'21'!F4:F6,'22' !F4:F9,'22'!F11,'24'!F4:F9,'24'!F11,'26'!F4:F6,'27 '!F4:F5,'28'!F4:F5,'29'!F4:F9,'29'!F11,'31'!F4:F8, '31'!F11)


"David Biddulph" wrote:

If you show us the formula which you are trying to use, we might be able to
help.
Don't try to retype it; copy it from your formula bar and paste here.
--
David Biddulph

"Karen" wrote in message
...
I have 31 sheet tabs that I have to sum, average and find the minimum &
maximum of 100 cells of data. I want to create a separate sheet that has
all
of these stats. I tried calculating all this data and I'm getting and
error
message:

The formula you typed contains an error:
1. For more information about fixing common problems, click help.
2. To get assistance in entering a function, click OK then click function
on
the Insert menu.
3. If you are not trying to enter a formula, avoid using an equal sign or
minus sign or precede it with a single quotation.

Are there too many cells of data? Am I trying to calculate too many
arguments? HELP!








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Possibly Too Many Arguments

Thank you! That's a good idea.
So, am I using too many arguments? Is there a limit?
Karen

"Mike H" wrote:

Karen,

If there was a recurring pattern to the cells you want to average it would
be relatively simple but I can't see any pattern at all.

So you still need a solution and here's how I'd do it. I would use a
'Helper' worksheet or an unused part of an existing worksheet and create
formula to pull these values into a contiguous range and would then average
that range.

For example

=SUM('1'!F4:F8,'1'!F11)
Takes care of the first part of your formula

Hope this helps.

Mike

"Karen" wrote:

Thank you for your help David.
=AVERAGE('1'!F4:F8,'1'!F11,'3'!F4:F6,'3'!F8:F11,'4 '!F4,'5'!F4:F7,'6'!F4:F5,'7'!F4:F6,'8'!F4:F7,'8'!F 11,'10'!F4:F10,'10'!F12,'11'!F4,'12'!F4:F6,'13'!F4 :F5,'14'!F4:F6,'15'!F4:F7,'15'!F10,'17'!F4:F8,'17' !F11,'18'!F4,'19'!F4:F7,'20'!F4:F5,'21'!F4:F6,'22' !F4:F9,'22'!F11,'24'!F4:F9,'24'!F11,'26'!F4:F6,'27 '!F4:F5,'28'!F4:F5,'29'!F4:F9,'29'!F11,'31'!F4:F8, '31'!F11)


"David Biddulph" wrote:

If you show us the formula which you are trying to use, we might be able to
help.
Don't try to retype it; copy it from your formula bar and paste here.
--
David Biddulph

"Karen" wrote in message
...
I have 31 sheet tabs that I have to sum, average and find the minimum &
maximum of 100 cells of data. I want to create a separate sheet that has
all
of these stats. I tried calculating all this data and I'm getting and
error
message:

The formula you typed contains an error:
1. For more information about fixing common problems, click help.
2. To get assistance in entering a function, click OK then click function
on
the Insert menu.
3. If you are not trying to enter a formula, avoid using an equal sign or
minus sign or precede it with a single quotation.

Are there too many cells of data? Am I trying to calculate too many
arguments? HELP!






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Possibly Too Many Arguments

yes 30

mike

"Karen" wrote:

Thank you! That's a good idea.
So, am I using too many arguments? Is there a limit?
Karen

"Mike H" wrote:

Karen,

If there was a recurring pattern to the cells you want to average it would
be relatively simple but I can't see any pattern at all.

So you still need a solution and here's how I'd do it. I would use a
'Helper' worksheet or an unused part of an existing worksheet and create
formula to pull these values into a contiguous range and would then average
that range.

For example

=SUM('1'!F4:F8,'1'!F11)
Takes care of the first part of your formula

Hope this helps.

Mike

"Karen" wrote:

Thank you for your help David.
=AVERAGE('1'!F4:F8,'1'!F11,'3'!F4:F6,'3'!F8:F11,'4 '!F4,'5'!F4:F7,'6'!F4:F5,'7'!F4:F6,'8'!F4:F7,'8'!F 11,'10'!F4:F10,'10'!F12,'11'!F4,'12'!F4:F6,'13'!F4 :F5,'14'!F4:F6,'15'!F4:F7,'15'!F10,'17'!F4:F8,'17' !F11,'18'!F4,'19'!F4:F7,'20'!F4:F5,'21'!F4:F6,'22' !F4:F9,'22'!F11,'24'!F4:F9,'24'!F11,'26'!F4:F6,'27 '!F4:F5,'28'!F4:F5,'29'!F4:F9,'29'!F11,'31'!F4:F8, '31'!F11)


"David Biddulph" wrote:

If you show us the formula which you are trying to use, we might be able to
help.
Don't try to retype it; copy it from your formula bar and paste here.
--
David Biddulph

"Karen" wrote in message
...
I have 31 sheet tabs that I have to sum, average and find the minimum &
maximum of 100 cells of data. I want to create a separate sheet that has
all
of these stats. I tried calculating all this data and I'm getting and
error
message:

The formula you typed contains an error:
1. For more information about fixing common problems, click help.
2. To get assistance in entering a function, click OK then click function
on
the Insert menu.
3. If you are not trying to enter a formula, avoid using an equal sign or
minus sign or precede it with a single quotation.

Are there too many cells of data? Am I trying to calculate too many
arguments? HELP!






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Possibly Too Many Arguments

Thank you!

"Mike H" wrote:

yes 30

mike

"Karen" wrote:

Thank you! That's a good idea.
So, am I using too many arguments? Is there a limit?
Karen

"Mike H" wrote:

Karen,

If there was a recurring pattern to the cells you want to average it would
be relatively simple but I can't see any pattern at all.

So you still need a solution and here's how I'd do it. I would use a
'Helper' worksheet or an unused part of an existing worksheet and create
formula to pull these values into a contiguous range and would then average
that range.

For example

=SUM('1'!F4:F8,'1'!F11)
Takes care of the first part of your formula

Hope this helps.

Mike

"Karen" wrote:

Thank you for your help David.
=AVERAGE('1'!F4:F8,'1'!F11,'3'!F4:F6,'3'!F8:F11,'4 '!F4,'5'!F4:F7,'6'!F4:F5,'7'!F4:F6,'8'!F4:F7,'8'!F 11,'10'!F4:F10,'10'!F12,'11'!F4,'12'!F4:F6,'13'!F4 :F5,'14'!F4:F6,'15'!F4:F7,'15'!F10,'17'!F4:F8,'17' !F11,'18'!F4,'19'!F4:F7,'20'!F4:F5,'21'!F4:F6,'22' !F4:F9,'22'!F11,'24'!F4:F9,'24'!F11,'26'!F4:F6,'27 '!F4:F5,'28'!F4:F5,'29'!F4:F9,'29'!F11,'31'!F4:F8, '31'!F11)


"David Biddulph" wrote:

If you show us the formula which you are trying to use, we might be able to
help.
Don't try to retype it; copy it from your formula bar and paste here.
--
David Biddulph

"Karen" wrote in message
...
I have 31 sheet tabs that I have to sum, average and find the minimum &
maximum of 100 cells of data. I want to create a separate sheet that has
all
of these stats. I tried calculating all this data and I'm getting and
error
message:

The formula you typed contains an error:
1. For more information about fixing common problems, click help.
2. To get assistance in entering a function, click OK then click function
on
the Insert menu.
3. If you are not trying to enter a formula, avoid using an equal sign or
minus sign or precede it with a single quotation.

Are there too many cells of data? Am I trying to calculate too many
arguments? HELP!






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
Possibly an Array, but I'm not sure? Dan the Man[_2_] Excel Discussion (Misc queries) 8 August 21st 08 05:13 AM
count if (possibly?!) Kayte Excel Worksheet Functions 6 October 2nd 06 05:30 PM
Please help! - Possibly need a Macro? Vertoobli Excel Worksheet Functions 6 March 10th 06 08:26 AM
Lookup possibly? SS Excel Discussion (Misc queries) 3 January 6th 05 02:02 PM
If Statement possibly? Matt Brown via OfficeKB.com Excel Worksheet Functions 1 November 17th 04 11:17 AM


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

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"