I have built a 12 month roster in which I have the 365 days across 365 columns and my 120 employees listed down in each row, down to row 120.
I am looking for some VBA code that will allow me to (for example) to display row 120 whilst keeping the active column in display.
I am currently using the below simple code which does highlight the row but resets the column set to show Column A. I am using toggle buttons to initiate the macros.
Sub ToggleButton3_Click()
Cells(ActiveCell.Row, "70").Activate
End Sub
Any tips, solutions or advice would be greatly appreciated!
Thank you!