Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Named Ranges

I am getting used to using named ranges but I am finding that in large tables
I occasionally want to refer to one column or one row of the table. Is there
any way this can be done?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 111
Default Named Ranges

Assuming a range named "Block1", this
formula will return the sum of the cells in
column 2 of Block1:

=SUM(INDEX(Block1,0,2))

and this one the sum of the cells in
row 4.

=SUM(INDEX(Block1,4,0))

--
Best Regards
Leo Heuser

Followup to newsgroup only please.

"Sunny_Delight" skrev i en
meddelelse .uk...
I am getting used to using named ranges but I am finding that in large

tables
I occasionally want to refer to one column or one row of the table. Is

there
any way this can be done?



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 111
Default Named Ranges

Or one way in VBA

Set DummyRange=Range("Block1").Offset(0,1).Resize(,1)

and

Set DummyRange=Range("Block1").Offset(3,0).Resize(1)


--
Best Regards
Leo Heuser

Followup to newsgroup only please.

"Sunny_Delight" skrev i en
meddelelse .uk...
I am getting used to using named ranges but I am finding that in large

tables
I occasionally want to refer to one column or one row of the table. Is

there
any way this can be done?



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
Named Ranges Shelly Excel Worksheet Functions 1 January 30th 07 10:27 PM
Named Ranges Epinn Excel Worksheet Functions 23 October 16th 06 07:27 AM
Like 123, allow named ranges, and print named ranges WP Excel Discussion (Misc queries) 1 April 8th 05 06:07 PM
Named Ranges and VBA Add-ins Mark[_19_] Excel Programming 0 September 4th 03 11:37 PM
Named Ranges and VBA Add-ins Tom Ogilvy Excel Programming 0 September 4th 03 09:58 PM


All times are GMT +1. The time now is 10:21 PM.

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"