Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default =sumproduct(round(

I am trying to figure out why sumproduct is suddenly returning #value!

At JE McGimpsey's suggestion, I have been using the following formula
as a double check on a spread sheet
=SUMPRODUCT(ROUND($F$63:$F$549*L63:L549,0)), it was working
wonderfully
this double-checks the sum of column M, which contains
=ROUND((F108*L108),0)
Column F & Column L have several text headers within the range. When
I use Tools/Formula Auditing/Evaluate formula, the #value! error
occurs at those text headers. The odd thing is, the spreadsheets I
was using in Office XP had the exact same info, and didn't have an
error when encountering text. I would just go back to the old
spreadsheet, but it is corrupted. Excel help said to move all the old
data into a new 2003 workbook.

http://support.microsoft.com/kb/820712/en-us

Now sumproduct is returning #value!. What am I doing wrong?

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default =sumproduct(round(

Column F & Column L have several text headers within the range.
When I use Tools/Formula Auditing/Evaluate formula, the #value!
error occurs at those text headers.


As it should.

text * 10 = #VALUE!
10 * text = #VALUE!
text * text = #VALUE!

Try this array formula** :

=SUM(IF(ISNUMBER(F63:F549*L63:L549),ROUND(F63:F549 *L63:L549,0)))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER)

--
Biff
Microsoft Excel MVP


"mhoffmeier" wrote in message
ups.com...
I am trying to figure out why sumproduct is suddenly returning #value!

At JE McGimpsey's suggestion, I have been using the following formula
as a double check on a spread sheet
=SUMPRODUCT(ROUND($F$63:$F$549*L63:L549,0)), it was working
wonderfully
this double-checks the sum of column M, which contains
=ROUND((F108*L108),0)
Column F & Column L have several text headers within the range. When
I use Tools/Formula Auditing/Evaluate formula, the #value! error
occurs at those text headers. The odd thing is, the spreadsheets I
was using in Office XP had the exact same info, and didn't have an
error when encountering text. I would just go back to the old
spreadsheet, but it is corrupted. Excel help said to move all the old
data into a new 2003 workbook.

http://support.microsoft.com/kb/820712/en-us

Now sumproduct is returning #value!. What am I doing wrong?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default =sumproduct(round(

On Jul 31, 1:58 pm, "T. Valko" wrote:
Column F & Column L have several text headers within the range.
When I use Tools/Formula Auditing/Evaluate formula, the #value!
error occurs at those text headers.


As it should.

text * 10 = #VALUE!
10 * text = #VALUE!
text * text = #VALUE!

Try this array formula** :

=SUM(IF(ISNUMBER(F63:F549*L63:L549),ROUND(F63:F549 *L63:L549,0)))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER)

--
Biff
Microsoft Excel MVP

"mhoffmeier" wrote in message

ups.com...



I am trying to figure out why sumproduct is suddenly returning #value!


At JE McGimpsey's suggestion, I have been using the following formula
as a double check on a spread sheet
=SUMPRODUCT(ROUND($F$63:$F$549*L63:L549,0)), it was working
wonderfully
this double-checks the sum of column M, which contains
=ROUND((F108*L108),0)
Column F & Column L have several text headers within the range. When
I use Tools/Formula Auditing/Evaluate formula, the #value! error
occurs at those text headers. The odd thing is, the spreadsheets I
was using in Office XP had the exact same info, and didn't have an
error when encountering text. I would just go back to the old
spreadsheet, but it is corrupted. Excel help said to move all the old
data into a new 2003 workbook.


http://support.microsoft.com/kb/820712/en-us


Now sumproduct is returning #value!. What am I doing wrong?- Hide quoted text -


- Show quoted text -


Wow, that works great. I'll have to study up on arrays. I still
don't understand why the error did not appear back in Excel 2002

Thanks

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default =sumproduct(round(

"mhoffmeier" wrote in message
ups.com...
On Jul 31, 1:58 pm, "T. Valko" wrote:
Column F & Column L have several text headers within the range.
When I use Tools/Formula Auditing/Evaluate formula, the #value!
error occurs at those text headers.


As it should.

text * 10 = #VALUE!
10 * text = #VALUE!
text * text = #VALUE!

Try this array formula** :

=SUM(IF(ISNUMBER(F63:F549*L63:L549),ROUND(F63:F549 *L63:L549,0)))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER)

--
Biff
Microsoft Excel MVP

"mhoffmeier" wrote in message

ups.com...



I am trying to figure out why sumproduct is suddenly returning #value!


At JE McGimpsey's suggestion, I have been using the following formula
as a double check on a spread sheet
=SUMPRODUCT(ROUND($F$63:$F$549*L63:L549,0)), it was working
wonderfully
this double-checks the sum of column M, which contains
=ROUND((F108*L108),0)
Column F & Column L have several text headers within the range. When
I use Tools/Formula Auditing/Evaluate formula, the #value! error
occurs at those text headers. The odd thing is, the spreadsheets I
was using in Office XP had the exact same info, and didn't have an
error when encountering text. I would just go back to the old
spreadsheet, but it is corrupted. Excel help said to move all the old
data into a new 2003 workbook.


http://support.microsoft.com/kb/820712/en-us


Now sumproduct is returning #value!. What am I doing wrong?- Hide
quoted text -


- Show quoted text -


Wow, that works great. I'll have to study up on arrays. I still
don't understand why the error did not appear back in Excel 2002

Thanks


Maybe what you were doing back in 2002 wasn't *exactly* the same thing
you're doing now.

Thanks for the feedback!

--
Biff
Microsoft Excel MVP


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
Round up down or anywhere Joel Excel Discussion (Misc queries) 0 February 15th 07 02:55 PM
Round Up/Down ? TQ Excel Worksheet Functions 2 July 28th 06 09:43 AM
How do I ROUND() round off decimals of a column dataset? Højrup Excel Worksheet Functions 2 January 12th 05 10:50 AM
how do I round up? Martushka Excel Worksheet Functions 1 January 3rd 05 07:30 PM
How can I round UP to to the next ,50? E.g. 2,3 should become 2,5. Vincent Excel Worksheet Functions 0 December 29th 04 02:17 PM


All times are GMT +1. The time now is 07:16 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"