Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 921
Default summing name range in the same column with Dynamic name ranges

Hi all,
I have a dynamic name range in a column, say colA with name Test from A7
to the end of the column. When I set A5 = sum(test), it always gives me 0.
Any idea why?

Thanks,
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default summing name range in the same column with Dynamic name ranges

Perhaps it is all text values.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Jeff" wrote in message
...
Hi all,
I have a dynamic name range in a column, say colA with name Test from

A7
to the end of the column. When I set A5 = sum(test), it always gives me

0.
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 921
Default summing name range in the same column with Dynamic name ranges

no.. they are not.

"Bob Phillips" wrote:

Perhaps it is all text values.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Jeff" wrote in message
...
Hi all,
I have a dynamic name range in a column, say colA with name Test from

A7
to the end of the column. When I set A5 = sum(test), it always gives me

0.
Any idea why?

Thanks,




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default summing name range in the same column with Dynamic name ranges

Describe exactly how you created your dynamic named range.
--

Regards,

RD
----------------------------------------------------------------------------
-------------------
Please keep all correspondence within the Group, so all may benefit !
----------------------------------------------------------------------------
-------------------

"Jeff" wrote in message
...
no.. they are not.

"Bob Phillips" wrote:

Perhaps it is all text values.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Jeff" wrote in message
...
Hi all,
I have a dynamic name range in a column, say colA with name Test from

A7
to the end of the column. When I set A5 = sum(test), it always gives me

0.
Any idea why?

Thanks,






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default summing name range in the same column with Dynamic name ranges

if you tried
=count(test)
what's returned.

If you see 0, then there are no numbers in that range.

And if you use:
edit|goto
type in Test
and hit enter

do you go to the range you expect?



Jeff wrote:

no.. they are not.

"Bob Phillips" wrote:

Perhaps it is all text values.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Jeff" wrote in message
...
Hi all,
I have a dynamic name range in a column, say colA with name Test from

A7
to the end of the column. When I set A5 = sum(test), it always gives me

0.
Any idea why?

Thanks,





--

Dave Peterson


  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 921
Default summing name range in the same column with Dynamic name ranges

RagDyer,
test=OFFSET(Sheet1!B7,0,0,COUNTA(Sheet1!$B:$B) -COUNTA(Sheet1!$B$1:$B$6),1)

in cell B5 = SUM(test)

Thanks,

"RagDyeR" wrote:

Describe exactly how you created your dynamic named range.
--

Regards,

RD
----------------------------------------------------------------------------
-------------------
Please keep all correspondence within the Group, so all may benefit !
----------------------------------------------------------------------------
-------------------

"Jeff" wrote in message
...
no.. they are not.

"Bob Phillips" wrote:

Perhaps it is all text values.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Jeff" wrote in message
...
Hi all,
I have a dynamic name range in a column, say colA with name Test from

A7
to the end of the column. When I set A5 = sum(test), it always gives me

0.
Any idea why?

Thanks,







  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default summing name range in the same column with Dynamic name ranges

Two things !

Take the formula [=Sum(test)] *out* of Column B.

Make the B7 reference *absolute*:

=OFFSET(Sheet1!$B$7,0,0,COUNTA(Sheet1!$B:$B)-COUNTA(Sheet1!$B$1:$B$6),1)


--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"Jeff" wrote in message
...
RagDyer,

st=OFFSET(Sheet1!B7,0,0,COUNTA(Sheet1!$B:$B) -COUNTA(Sheet1!$B$1:$B$6),1)

in cell B5 = SUM(test)

Thanks,

"RagDyeR" wrote:

Describe exactly how you created your dynamic named range.
--

Regards,

RD


--------------------------------------------------------------------------

--
-------------------
Please keep all correspondence within the Group, so all may benefit !


--------------------------------------------------------------------------

--
-------------------

"Jeff" wrote in message
...
no.. they are not.

"Bob Phillips" wrote:

Perhaps it is all text values.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Jeff" wrote in message
...
Hi all,
I have a dynamic name range in a column, say colA with name Test

from
A7
to the end of the column. When I set A5 = sum(test), it always

gives me
0.
Any idea why?

Thanks,







  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 921
Default summing name range in the same column with Dynamic name ranges

Ragdyer,
are you impling the sum can't be in the same column as of the name range?
if that's required, i guess i'll hv to use sum(b7:bwhatever) instead?

Thanks,

"Ragdyer" wrote:

Two things !

Take the formula [=Sum(test)] *out* of Column B.

Make the B7 reference *absolute*:

=OFFSET(Sheet1!$B$7,0,0,COUNTA(Sheet1!$B:$B)-COUNTA(Sheet1!$B$1:$B$6),1)


--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"Jeff" wrote in message
...
RagDyer,

st=OFFSET(Sheet1!B7,0,0,COUNTA(Sheet1!$B:$B) -COUNTA(Sheet1!$B$1:$B$6),1)

in cell B5 = SUM(test)

Thanks,

"RagDyeR" wrote:

Describe exactly how you created your dynamic named range.
--

Regards,

RD


--------------------------------------------------------------------------

--
-------------------
Please keep all correspondence within the Group, so all may benefit !


--------------------------------------------------------------------------

--
-------------------

"Jeff" wrote in message
...
no.. they are not.

"Bob Phillips" wrote:

Perhaps it is all text values.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Jeff" wrote in message
...
Hi all,
I have a dynamic name range in a column, say colA with name Test

from
A7
to the end of the column. When I set A5 = sum(test), it always

gives me
0.
Any idea why?

Thanks,








  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default summing name range in the same column with Dynamic name ranges

Every way I tried it, I get a circular reference, and I get 0 !

Don't you?

If you must have the formula in Column B, you could simply reference a cell
that is beyond any actual possibility of being exceeded.

=Sum(B7:B10000)
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"Jeff" wrote in message
...
Ragdyer,
are you impling the sum can't be in the same column as of the name

range?
if that's required, i guess i'll hv to use sum(b7:bwhatever) instead?

Thanks,

"Ragdyer" wrote:

Two things !

Take the formula [=Sum(test)] *out* of Column B.

Make the B7 reference *absolute*:

=OFFSET(Sheet1!$B$7,0,0,COUNTA(Sheet1!$B:$B)-COUNTA(Sheet1!$B$1:$B$6),1)


--
HTH,

RD


--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit

!

--------------------------------------------------------------------------

-

"Jeff" wrote in message
...
RagDyer,


=OFFSET(Sheet1!B7,0,0,COUNTA(Sheet1!$B:$B) -COUNTA(Sheet1!$B$1:$B$6),1)

in cell B5 = SUM(test)

Thanks,

"RagDyeR" wrote:

Describe exactly how you created your dynamic named range.
--

Regards,

RD


--------------------------------------------------------------------------
--
-------------------
Please keep all correspondence within the Group, so all may benefit

!


--------------------------------------------------------------------------
--
-------------------

"Jeff" wrote in message
...
no.. they are not.

"Bob Phillips" wrote:

Perhaps it is all text values.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Jeff" wrote in message
...
Hi all,
I have a dynamic name range in a column, say colA with name

Test
from
A7
to the end of the column. When I set A5 = sum(test), it always

gives me
0.
Any idea why?

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
Summing a Column instead of a Column range SharonP. Excel Discussion (Misc queries) 1 February 16th 06 07:28 PM
Need to Improve Code Copying/Pasting Between Workbooks David Excel Discussion (Misc queries) 1 January 6th 06 03:56 AM
Positioning Numeric Values Resulting from 6 Column Array Formula Sam via OfficeKB.com Excel Worksheet Functions 2 January 5th 06 02:03 AM
Lookup Table Dilemma Karen Excel Worksheet Functions 2 June 10th 05 08:22 PM
Dynamic Print Range Help waxwing Excel Worksheet Functions 2 February 21st 05 03:47 PM


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