I'm building form buttons with a statement of the like:
These buttons need to be neatly placed above a header for each table of data I print.
The Buttons.Add statement described above seems to lock you in to locating the button using X and Y offsets from the top left of the page.
I would like to tie the location of the buttons to a particular cell reference.
Is this possible?
Code:
ActiveSheet.Buttons.Add(1000, 25, 40, 15).Select
Selection.OnAction = "View_Reporting_Unit"
etc
These buttons need to be neatly placed above a header for each table of data I print.
The Buttons.Add statement described above seems to lock you in to locating the button using X and Y offsets from the top left of the page.
I would like to tie the location of the buttons to a particular cell reference.
Is this possible?