Excel2016: XML file. How do I use built in commands, instead of VBA scripts I wrote

Fredsbank

New Member
Joined
Jul 24, 2018
Messages
2
I created an addin that works fine. I wrote a bunch of code and assigned them to buttons.
But I would like to add some buttons using built in functions like Add Row, Delete Row, Hide Row. How do I refer to these built in commands?

Here is a line of my XML code:
Code:
[TABLE="width: 153"]
<tbody>[TR]
  [TD="class: xl63, width: 153"]<button  id="Row_BT1" label="Delete Row"  onAction="Consulting.DeleteRow" imageMso="DeleteRows"  screentip = "Delete Rows at current selection" />
[/TD]
[/TR]
</tbody>[/TABLE]

I crossposted this on StackOverflow board, last week, but no responses yet. You can see it here if you wish.:
https://stackoverflow.com/questions...ds-to-new-ribbon-tab-in-custom-addin-exel2016
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
I just realized the XML code didn't post. Here is the code without tags:

<button id="Row_BT2" label="Add Row" onAction="Consulting.AddRow" imageMso="InsertRows" screentip = "Add Row above current selection" />

This is the line for one of the buttons in the ribbon. it works, but I really want to use the built in addrow command instead of VBA code I wrote so I can UNDO it. Any ideas?
 
Upvote 0

Forum statistics

Threads
1,215,504
Messages
6,125,185
Members
449,213
Latest member
Kirbito

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top