Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Conflict with Valid Range Reference Error in Microsoft Excel 2007

Hi,

While converting the Macros enabled Microsoft Excel 2003 to Microsoft Excel
2007 format, I am getting the following Conflict with Valid Range Reference
Error. After clicking on the Ok\OK to All buttons the VBA code in the Excel
is not working as it is expected to.

The following is the Error message.

"The name, rev02, either conflicts with a valid range reference or is
invalid for excel. The name has been replaced with _rev02.

You may still need to manually update any references to this name used in
VBA code or as text arguments in functions. You must close and reopen the
workbook before these changes take effect."

and prompting for Ok\OK to All button.

Please pass on any pointers for resolving this issue.

--
Thanks in Advance,
Vamsi
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default Conflict with Valid Range Reference Error in Microsoft Excel 2007

It is telling you that in xl2007, it has a column header REV which causes a
conflict with with a file name or some other name in your xl2003 files that
contain rev, so you need to use a subscript line (_) to distinguish that what
you are transferring in is not a range reference. Excel has done it for you,
but you need to save the file to make the change effective.

"Vamsi" wrote:

Hi,

While converting the Macros enabled Microsoft Excel 2003 to Microsoft Excel
2007 format, I am getting the following Conflict with Valid Range Reference
Error. After clicking on the Ok\OK to All buttons the VBA code in the Excel
is not working as it is expected to.

The following is the Error message.

"The name, rev02, either conflicts with a valid range reference or is
invalid for excel. The name has been replaced with _rev02.

You may still need to manually update any references to this name used in
VBA code or as text arguments in functions. You must close and reopen the
workbook before these changes take effect."

and prompting for Ok\OK to All button.

Please pass on any pointers for resolving this issue.

--
Thanks in Advance,
Vamsi

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Conflict with Valid Range Reference Error in Microsoft Excel 2007

xl2007 has 16k columns.

That means that names that worked ok in xl2003 and below may look like addresses
of cells in xl2007 (IV isn't the last column anymore).

You'll have to change the name.

And excel won't change your code--you'll have to do that yourself. That's what
the warning means.

And excel won't change any formulas that use that name as text:
=indirect("rev02")
won't get fixed automatically.

Vamsi wrote:

Hi,

While converting the Macros enabled Microsoft Excel 2003 to Microsoft Excel
2007 format, I am getting the following Conflict with Valid Range Reference
Error. After clicking on the Ok\OK to All buttons the VBA code in the Excel
is not working as it is expected to.

The following is the Error message.

"The name, rev02, either conflicts with a valid range reference or is
invalid for excel. The name has been replaced with _rev02.

You may still need to manually update any references to this name used in
VBA code or as text arguments in functions. You must close and reopen the
workbook before these changes take effect."

and prompting for Ok\OK to All button.

Please pass on any pointers for resolving this issue.

--
Thanks in Advance,
Vamsi


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Conflict with Valid Range Reference Error in Microsoft Excel 2

Hi Dave,

Can you please elaborate on your reply.


"Dave Peterson" wrote:

xl2007 has 16k columns.

That means that names that worked ok in xl2003 and below may look like addresses
of cells in xl2007 (IV isn't the last column anymore).

You'll have to change the name.

And excel won't change your code--you'll have to do that yourself. That's what
the warning means.

And excel won't change any formulas that use that name as text:
=indirect("rev02")
won't get fixed automatically.

Vamsi wrote:

Hi,

While converting the Macros enabled Microsoft Excel 2003 to Microsoft Excel
2007 format, I am getting the following Conflict with Valid Range Reference
Error. After clicking on the Ok\OK to All buttons the VBA code in the Excel
is not working as it is expected to.

The following is the Error message.

"The name, rev02, either conflicts with a valid range reference or is
invalid for excel. The name has been replaced with _rev02.

You may still need to manually update any references to this name used in
VBA code or as text arguments in functions. You must close and reopen the
workbook before these changes take effect."

and prompting for Ok\OK to All button.

Please pass on any pointers for resolving this issue.

--
Thanks in Advance,
Vamsi


--

Dave Peterson

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Conflict with Valid Range Reference Error in Microsoft Excel 2

There are some strings that can't be used for names--things that look like
addresses of ranges. There are characters that are invalid in names, so they
can't be used.

Your name looks like a cell address. Excel won't allow it to be used.

Vamsi wrote:

Hi Dave,

Can you please elaborate on your reply.

"Dave Peterson" wrote:

xl2007 has 16k columns.

That means that names that worked ok in xl2003 and below may look like addresses
of cells in xl2007 (IV isn't the last column anymore).

You'll have to change the name.

And excel won't change your code--you'll have to do that yourself. That's what
the warning means.

And excel won't change any formulas that use that name as text:
=indirect("rev02")
won't get fixed automatically.

Vamsi wrote:

Hi,

While converting the Macros enabled Microsoft Excel 2003 to Microsoft Excel
2007 format, I am getting the following Conflict with Valid Range Reference
Error. After clicking on the Ok\OK to All buttons the VBA code in the Excel
is not working as it is expected to.

The following is the Error message.

"The name, rev02, either conflicts with a valid range reference or is
invalid for excel. The name has been replaced with _rev02.

You may still need to manually update any references to this name used in
VBA code or as text arguments in functions. You must close and reopen the
workbook before these changes take effect."

and prompting for Ok\OK to All button.

Please pass on any pointers for resolving this issue.

--
Thanks in Advance,
Vamsi


--

Dave Peterson


--

Dave Peterson
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
The name ... either conflicts with a valid range reference or isinvalid for Excel. Greg Lovern Excel Programming 6 November 15th 13 07:10 PM
Excel 2007: "Reference is not valid" when refreshing pivot table Paul Martin[_2_] Excel Discussion (Misc queries) 2 January 5th 10 02:47 AM
"Reference not valid" error when I try to edit the macro in excel Yuvaraj Excel Discussion (Misc queries) 1 January 10th 08 08:32 PM
Excel 2007 - Reference is not valid carryt Excel Discussion (Misc queries) 1 August 3rd 07 09:44 PM
Conflict with valid range reference error smaruzzi Excel Discussion (Misc queries) 1 March 14th 07 10:05 PM


All times are GMT +1. The time now is 08:45 AM.

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"