Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 224
Default The name ... either conflicts with a valid range reference or isinvalid for Excel.

One of my users is getting the following error. He sent me a picture
so I have the exact text:

================================================== ========
[Microsoft Office Excel]
(exclamation point)
The name, ClickedMatchButton("Button 664"), either conflicts with a
valid range reference or is invalid for Excel. The name has been
replaced with _1ClickedMatchButton__Button_664.

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.

<OK <OK to All
================================================== ========

(btw the "1" is there in the error message; it's not a typo.)

We're both using Excel 2007.

The code is NOT creating defined names. The code is creating forms
(not ActiveX) buttons, and setting their OnAction properties to send
their own button name as a parameter to a function:

strButtonNameArg = """" & btnMatch.Name & """" 'must wrap with
doublequote characters.
btnMatch.OnAction = "'" & strThisWorkbookName &
"'!'ClickedMatchButton(" & strButtonNameArg & ")'"

(the reason I'm doing it that way is because we have too many long
parameters for OnAction's 255-character limit, so I'm putting the real
parameters in the buttons' AlternativeText properties, which have a
4,095-character limit (in VBA, though only 255 manually), then parsing
the parameters out of each button's AlternativeText property when
called, using commas as delimiters and doubling any commas in the
actual parameters to escape them.)

It all works fine for me, and fine for others except for the one
person, and fine him too most of the time. He's gotten the error twice
(with different button numbers each time).

I don't see any reference to this error in this newsgroup. I found
three on the web, but two of them have no solutions, and the third is
in Thai, which unfortunately Babelfish doesn't translate to English:

http://www.fftodayforums.com/forum/i...owtopic=281892
http://www.thaivi.com/webboard/archi...20__index.html
http://www.youneedabudget.com/forum/...t=1520&p=10526


I haven't been able to reproduce this error myself, though I've done
exactly what that user said he'd done, with the exact same input data.
We're both using Excel 2007, and both on Windows XP/SP2.


Any suggestions?


Thanks,

Greg
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 224
Default The name ... either conflicts with a valid range reference or isinvalid for Excel.


Now another user has reported this error, though with a different
button number.

Any suggestions? I still haven't been able to repro.

Greg



On Jan 25, 8:58 am, Greg Lovern wrote:
One of my users is getting the following error. He sent me a picture
so I have the exact text:

================================================== ========
[Microsoft Office Excel]
(exclamation point)
The name, ClickedMatchButton("Button 664"), either conflicts with a
valid range reference or is invalid for Excel. The name has been
replaced with _1ClickedMatchButton__Button_664.

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.

<OK <OK to All
================================================== ========

(btw the "1" is there in the error message; it's not a typo.)

We're both using Excel 2007.

The code is NOT creating defined names. The code is creating forms
(not ActiveX) buttons, and setting their OnAction properties to send
their own button name as a parameter to a function:

strButtonNameArg = """" & btnMatch.Name & """" 'must wrap with
doublequote characters.
btnMatch.OnAction = "'" & strThisWorkbookName &
"'!'ClickedMatchButton(" & strButtonNameArg & ")'"

(the reason I'm doing it that way is because we have too many long
parameters for OnAction's 255-character limit, so I'm putting the real
parameters in the buttons' AlternativeText properties, which have a
4,095-character limit (in VBA, though only 255 manually), then parsing
the parameters out of each button's AlternativeText property when
called, using commas as delimiters and doubling any commas in the
actual parameters to escape them.)

It all works fine for me, and fine for others except for the one
person, and fine him too most of the time. He's gotten the error twice
(with different button numbers each time).

I don't see any reference to this error in this newsgroup. I found
three on the web, but two of them have no solutions, and the third is
in Thai, which unfortunately Babelfish doesn't translate to English:

http://www.fftodayforums.com/forum/i...t=1520&p=10526

I haven't been able to reproduce this error myself, though I've done
exactly what that user said he'd done, with the exact same input data.
We're both using Excel 2007, and both on Windows XP/SP2.

Any suggestions?

Thanks,

Greg


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 224
Default The name ... either conflicts with a valid range reference or isinvalid for Excel.


Two users have now reported this error happening when the code wasn't
even running, while they had task-switched away from Excel and were
working in other applications.

Any suggestions? I still haven't been able to repro, though I've tried
everything every user who has reported it says they were doing at the
time.


Greg


On Feb 8, 1:19 pm, Greg Lovern wrote:
Now another user has reported this error, though with a different
button number.

Any suggestions? I still haven't been able to repro.

Greg

On Jan 25, 8:58 am, Greg Lovern wrote:

One of my users is getting the following error. He sent me a picture
so I have the exact text:


================================================== ========
[Microsoft Office Excel]
(exclamation point)
The name, ClickedMatchButton("Button 664"), either conflicts with a
valid range reference or is invalid for Excel. The name has been
replaced with _1ClickedMatchButton__Button_664.


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.


<OK <OK to All
================================================== ========


(btw the "1" is there in the error message; it's not a typo.)


We're both using Excel 2007.


The code is NOT creating defined names. The code is creating forms
(not ActiveX) buttons, and setting their OnAction properties to send
their own button name as a parameter to a function:


strButtonNameArg = """" & btnMatch.Name & """" 'must wrap with
doublequote characters.
btnMatch.OnAction = "'" & strThisWorkbookName &
"'!'ClickedMatchButton(" & strButtonNameArg & ")'"


(the reason I'm doing it that way is because we have too many long
parameters for OnAction's 255-character limit, so I'm putting the real
parameters in the buttons' AlternativeText properties, which have a
4,095-character limit (in VBA, though only 255 manually), then parsing
the parameters out of each button's AlternativeText property when
called, using commas as delimiters and doubling any commas in the
actual parameters to escape them.)


It all works fine for me, and fine for others except for the one
person, and fine him too most of the time. He's gotten the error twice
(with different button numbers each time).


I don't see any reference to this error in this newsgroup. I found
three on the web, but two of them have no solutions, and the third is
in Thai, which unfortunately Babelfish doesn't translate to English:


http://www.fftodayforums.com/forum/i...281892http://w...


I haven't been able to reproduce this error myself, though I've done
exactly what that user said he'd done, with the exact same input data.
We're both using Excel 2007, and both on Windows XP/SP2.


Any suggestions?


Thanks,


Greg


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default The name ... either conflicts with a valid range reference or isinvalid for Excel.

We are also having this error in Excel 2007. After it came up, the
document formatting was all lost.

The documents are big, but full of words, numbers and formatting. No
forms or programming.

Person it happened to is on a Sony running Vista and Excel 2007. The
computer connects to Windows Update so it should be up to date. Norton
360 us also protecting the machine.

WIth multiple setups like this, the only difference I can see off hand
is the brand of computer.

Thoughts?
Help?
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default The name ... either conflicts with a valid range reference or isinvalid for Excel.

I saved as an XLSX file a document that had been an XLS file. This message appears when I open the new XLSX file, and occasionally appears spontaneously while the file is open (or for an unknown reason, at least).

It's funny because Excel suggested that I save the file as XLSX to improve compatibility.


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default The name ... either conflicts with a valid range reference or isinvalid for Excel.

This is happening to me now, on a Mac, in an .xls file, so it doesn't seem to be an xlsx file issue or a Windows issue. Did anyone else have any luck figuring it out?

On Wednesday, June 5, 2013 4:22:44 PM UTC-7, witek wrote:
cameron wrote:

I saved as an XLSX file a document that had been an XLS file. This message appears when I open the new XLSX file, and occasionally appears spontaneously while the file is open (or for an unknown reason, at least).




It's funny because Excel suggested that I save the file as XLSX to improve compatibility.








whatever was a valid name in Excel 2003 i.e. sec1 is now a valid cell

reference.



start looking...


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
Excel 2002 Pivot Table: Why reference is not valid ? Mr. Low[_3_] Excel Discussion (Misc queries) 0 January 21st 10 01:33 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
Range Name from Another Workbook conflicts with INDEX and INDIRECT SubDoer Excel Worksheet Functions 1 February 14th 06 09:42 AM
Range Name from Another Workbook conflicts with INDEX and INDIRECT SubDoer Excel Programming 1 February 14th 06 08:03 AM


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