This is probably a bug, but Im looking for a way to bypass the problem.
I dynamically (VBA) add dropdown list on top of some cells and set a call to a macro on the OnAction command like this:
When Excel is in english, no problem, when Excel is in french the OnAction give me an execution error '1004' the formula is to complicated to be affected to the object (translated from french...).Code:With Worksheets("Page1") Set lb = .Shapes.AddFormControl(xlDropDown, Range("$G$2").Left, Range("$G$2").Top - 1, Range("$G$2").Width, 15.75) lb.ControlFormat.ListFillRange = "PagePara!$J$2:$J$4" lb.ControlFormat.LinkedCell = "$G$2" lb.OnAction = "MacroAutoComplete!R1C1:R5C1" End With
I suspect that in french the reference "MacroAutoComplete!R1C1:R5C1" is not possible. What should be the universal compatible way to set the reference?
Thanks.
~Ritch
Hi Ritch and welcome to the board
Does the debugger give the line with the RC ref as the wrong one?
Quoting entire posts clutters the forum and makes threads hard to read !
If you are pleased with a member's answer then use the Star icon to rate it
Click here to see forum rules
Yes it highlight this line.
So anyone, any idea?
the OnAction property expects a macro name not a range
what exactly is the code trying to do?
"MacroAutoComplete" is a Macrosheet 4.0 and "R1C1:R5C1" is the row:column reference where are the macro command on the sheet.
And dont forget its wokring with english excel version, the problem occur only with french version.
So maybe there's another way to give the OnAction event the sheet!row:column reference?
Last edited by Cyberitch; 08-21-2008 at 07:11 PM.
I'm too young to know about Macro 4 things
Sorry I can help.
Gosh now I feel old!!!
Its ok its very hard to find info about macro 4.0, and if you wanna know, its used for mobile device like pocket pc. Since you cant run (not yet) VBA on mobile device I use those old macro to do some automated actions.
Is there another way to reference a cell not using R1:C1 ?
have you tried using a named range?
otherwise the only way I know is A1 notation.
isnt french equivalent of R1C1 ..... L1C1
look in tools options general(what that is in french i have no idea)for where youd expect see the use r1c1 reference style
possibly, try it or maybe
OnAction = "MacroAutoComplete!Cells(1, 1).Cells(5, 1)"
No luck, any other idea I could try?
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks