![]() |
button awareness. i dont know if it can be done.
can you make a macro assigned to button aware of where that button is? i want to use the same macro for all 250+ buttons i will hav associated to the row its placed on.....so i need the macro to be awar of what button triggered the macro and not to repeat the macro for al buttons. on top of that....i need the macro to beable to know where the butto is.....on what column and what row....if you need my code o spreadsheet i can post it....thanx -- cdd ----------------------------------------------------------------------- cdde's Profile: http://www.excelforum.com/member.php...fo&userid=1553 View this thread: http://www.excelforum.com/showthread.php?threadid=27139 |
button awareness. i dont know if it can be done.
That is a bunch of buttons dude! And all buttons will run the same macro? Is
that all the buttons will do? If so, there must be a simpler way to do what you want. Please post what data is in your sheet and what you want to do with it, and any code you have. Thnx..Mike F "cdde" wrote in message ... can you make a macro assigned to button aware of where that button is? i want to use the same macro for all 250+ buttons i will have associated to the row its placed on.....so i need the macro to be aware of what button triggered the macro and not to repeat the macro for all buttons. on top of that....i need the macro to beable to know where the button is.....on what column and what row....if you need my code of spreadsheet i can post it....thanx. -- cdde ------------------------------------------------------------------------ cdde's Profile: http://www.excelforum.com/member.php...o&userid=15532 View this thread: http://www.excelforum.com/showthread...hreadid=271393 |
button awareness. i dont know if it can be done.
Try something like this! (put this in your auto_open module) With Application .CommandBars("name of your commandbar").Controls("name of you button").OnAction = "name of your macro" End With Hope this helps Simo -- Simon Lloy ----------------------------------------------------------------------- Simon Lloyd's Profile: http://www.excelforum.com/member.php...nfo&userid=670 View this thread: http://www.excelforum.com/showthread.php?threadid=27139 |
button awareness. i dont know if it can be done.
Look at "application.caller" then use that value to find the button
(use buttons from the forms collection, not the control toolbox) Sub FindMe() Dim sName Dim s sName = Application.Caller Set s = ActiveSheet.DrawingObjects(sName) MsgBox s.TopLeftCell.Address(False, False) End Sub Tim "cdde" wrote in message ... can you make a macro assigned to button aware of where that button is? i want to use the same macro for all 250+ buttons i will have associated to the row its placed on.....so i need the macro to be aware of what button triggered the macro and not to repeat the macro for all buttons. on top of that....i need the macro to beable to know where the button is.....on what column and what row....if you need my code of spreadsheet i can post it....thanx. -- cdde ------------------------------------------------------------------------ cdde's Profile: http://www.excelforum.com/member.php...o&userid=15532 View this thread: http://www.excelforum.com/showthread...hreadid=271393 |
All times are GMT +1. The time now is 12:26 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com