Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 23
Default Offset Named range in Datavalidation List

Hi All,

I'm able to refer a sheet1 named range for a datavalidation list box in
sheet2.
Data-Validation-Allow=List,Source="=products" (products is named range in
sheet1)

Later defined a named range
products_offset="=OFFSET($A$1,0,0,CountA($A:$A),0) "

Then I tried to update the list source (Data Validation) in sheet2 i.e.,
updated 'products' with 'products_offset'. After pressing Enter key I'm
getting an error as "The source currently evaluates to an error. Do you wish
to continue?" By clicking on 'Yes' I'm not able to see any item in sheet2
list box.

I've also tried with source as =INDIRECT("products_offset"), but still
getting above error.

Here my question:
How can I refer named range with offset foramulae as source for list box
(Data validation) in another sheet.

Can any one share your thoughts and ideas on over coming the issue discussed
at 'Here my question:'?

Your help/support will be appreciated.

Advanced Thanks,
Vinod
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Offset Named range in Datavalidation List

Later defined a named range
products_offset="=OFFSET($A$1,0,0,CountA($A:$A),0 )"


You have the width argument set to 0. Either leave it out or set it to 1:

=OFFSET($A$1,0,0,CountA($A:$A))

=OFFSET($A$1,0,0,CountA($A:$A),1)

--
Biff
Microsoft Excel MVP


"Vinod" wrote in message
...
Hi All,

I'm able to refer a sheet1 named range for a datavalidation list box in
sheet2.
Data-Validation-Allow=List,Source="=products" (products is named range
in
sheet1)

Later defined a named range
products_offset="=OFFSET($A$1,0,0,CountA($A:$A),0) "

Then I tried to update the list source (Data Validation) in sheet2 i.e.,
updated 'products' with 'products_offset'. After pressing Enter key I'm
getting an error as "The source currently evaluates to an error. Do you
wish
to continue?" By clicking on 'Yes' I'm not able to see any item in sheet2
list box.

I've also tried with source as =INDIRECT("products_offset"), but still
getting above error.

Here my question:
How can I refer named range with offset foramulae as source for list box
(Data validation) in another sheet.

Can any one share your thoughts and ideas on over coming the issue
discussed
at 'Here my question:'?

Your help/support will be appreciated.

Advanced Thanks,
Vinod



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 23
Default Offset Named range in Datavalidation List

Thanks T.Valko, for your immediate response.

Your solution is absolutely working for me without issues. Your immediate
attention and support is highly appreciated.

Once again Thanks for correcting the mistake and puting me in right direction.

Regards
Vinod

"T. Valko" wrote:

Later defined a named range
products_offset="=OFFSET($A$1,0,0,CountA($A:$A),0 )"


You have the width argument set to 0. Either leave it out or set it to 1:

=OFFSET($A$1,0,0,CountA($A:$A))

=OFFSET($A$1,0,0,CountA($A:$A),1)

--
Biff
Microsoft Excel MVP


"Vinod" wrote in message
...
Hi All,

I'm able to refer a sheet1 named range for a datavalidation list box in
sheet2.
Data-Validation-Allow=List,Source="=products" (products is named range
in
sheet1)

Later defined a named range
products_offset="=OFFSET($A$1,0,0,CountA($A:$A),0) "

Then I tried to update the list source (Data Validation) in sheet2 i.e.,
updated 'products' with 'products_offset'. After pressing Enter key I'm
getting an error as "The source currently evaluates to an error. Do you
wish
to continue?" By clicking on 'Yes' I'm not able to see any item in sheet2
list box.

I've also tried with source as =INDIRECT("products_offset"), but still
getting above error.

Here my question:
How can I refer named range with offset foramulae as source for list box
(Data validation) in another sheet.

Can any one share your thoughts and ideas on over coming the issue
discussed
at 'Here my question:'?

Your help/support will be appreciated.

Advanced Thanks,
Vinod




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Offset Named range in Datavalidation List

You're quite welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"Vinod" wrote in message
...
Thanks T.Valko, for your immediate response.

Your solution is absolutely working for me without issues. Your immediate
attention and support is highly appreciated.

Once again Thanks for correcting the mistake and puting me in right
direction.

Regards
Vinod

"T. Valko" wrote:

Later defined a named range
products_offset="=OFFSET($A$1,0,0,CountA($A:$A),0 )"


You have the width argument set to 0. Either leave it out or set it to 1:

=OFFSET($A$1,0,0,CountA($A:$A))

=OFFSET($A$1,0,0,CountA($A:$A),1)

--
Biff
Microsoft Excel MVP


"Vinod" wrote in message
...
Hi All,

I'm able to refer a sheet1 named range for a datavalidation list box in
sheet2.
Data-Validation-Allow=List,Source="=products" (products is named
range
in
sheet1)

Later defined a named range
products_offset="=OFFSET($A$1,0,0,CountA($A:$A),0) "

Then I tried to update the list source (Data Validation) in sheet2
i.e.,
updated 'products' with 'products_offset'. After pressing Enter key I'm
getting an error as "The source currently evaluates to an error. Do you
wish
to continue?" By clicking on 'Yes' I'm not able to see any item in
sheet2
list box.

I've also tried with source as =INDIRECT("products_offset"), but still
getting above error.

Here my question:
How can I refer named range with offset foramulae as source for list
box
(Data validation) in another sheet.

Can any one share your thoughts and ideas on over coming the issue
discussed
at 'Here my question:'?

Your help/support will be appreciated.

Advanced Thanks,
Vinod






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 range is hidden when using OFFSET() Conan Kelly Excel Discussion (Misc queries) 1 October 8th 07 08:56 PM
named range row offset [email protected] Excel Worksheet Functions 5 July 8th 06 01:35 AM
Dynamic named range & Offset fastballfreddy Excel Discussion (Misc queries) 1 May 4th 06 09:00 AM
Offset delivers value error with Named range [email protected] Excel Worksheet Functions 4 November 29th 05 12:49 PM
named range, offset self-reference George Excel Discussion (Misc queries) 6 November 6th 05 11:21 PM


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