View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] e_hobsbawm@hotmail.com is offline
external usenet poster
 
Posts: 7
Default Assign several macros with OnAction

Hi,

I have created some CommandBarButtons. I assign which macro to run when
selecting the menu item by using the OnAction property.
myMenyItem.onAction = "updateData"

I would like two run several macros instead of one, in fashion og
myMenyItem.onAction = "updateData1 : updateData2 : updateScreen"

where updateData1, updateData2, updateScreen are three different subs.
Is this possible?

Best Regards
Eric