VBA macro to move to the cell 'underneath'
Issue
If you need need VBA macro to move to the cell 'underneath' the particular button that is being pressed, series of buttons down the page, each will run the same macro/do the same thing, but starting from a different location each time, i.e. starting from where the button is located.
Solution
This is very easy to set, all you will have to do is to put this code in a macro called by the button:
Dim r As Range
Set r = ActiveSheet.Buttons(Application.Caller).TopLeftCell
Range(Cells(r.Row, r.Column), Cells(r.Row, r.Column)).Select