I found a Very useful macro so i added it to several that i want to create an add in for. I have the add in created and it works when i transfer to other computers. Now i want to make a custom ribbon. I can't figure out how to activate a macro with a button. Running the macro using the developer tab, has no error. assigning the macro to a button on the "QAT" works also. I am using the "Custom UI Editor" to create the Ribbon, everything "works" until it gets to the macro. "Wrong number of arguments or invalid property assignment" appears. I may have to change something in the code, but being a NOOB, i can't figure it out.
XML code for ribbon
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<ribbon>
<tabs>
<tab id="customTab" label="S-Macro" insertAfterMso="TabHome">
<group id="customGroup" label="Scott's Macros">
<button id="customButton1" label="Copy Row" size="large" onAction="Personal.xlsm.AddNewRowButton" imageMso="EndOfDocument" />
</group>
<group idMso="GroupEnterDataAlignment" />
<group idMso="GroupEnterDataNumber" />
<group idMso="GroupQuickFormatting" />
</tab>
</tabs>
</ribbon>
</customUI>
This is the recorded Macro Code for: Module1
Sub AddNewRowButton()
'
' AddNewRowButton Macro
'
'
ActiveSheet.Buttons.Add(0, 0, 240.75, 30.75).Select
Selection.OnAction = "InsertRowsAndFillFormulas_caller"
With Selection.Font
.Name = "Times New Roman"
.FontStyle = "Regular"
.Size = 8
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
End With
With Selection
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlTop
.ReadingOrder = xlContext
.Orientation = xlHorizontal
.AutoSize = False
End With
Selection.Characters.text = _
"Select the row above where you want to insert the rows, this is also the row whose formulas will be copied down. Then press Button."
With Selection.Characters(Start:=1, Length:=131).Font
.Name = "Times New Roman"
.FontStyle = "Regular"
.Size = 8
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = 1
End With
Range("D7").Select
End Sub
Bookmarks