Please elaborate on how to do this. The 1st row is supposed to be hidden. And also i don't know how to place the button in the second row.Difficult with a button, easier to use a non modal user form orthe easy way for a button is to place it in the first row and freeze the panesso the first row - and the button - stays visible when you scroll down …
Hi! p45cal, thanks for your suggestion. As i'm not an expert in VBA, so please tell me where to exactly place the line.In your Worksheet_SelectionChange sub, do something along these lines before the sub is exited:
Buttons("Button 2").Top = Cells(ActiveWindow.ScrollRow + 1, 1).Top
or:
Buttons("Button 2").Top = ActiveCell.Top + 5
I'm not going to be able to open any Excel file for a day or two so all I can suggest in the interim is to right - click the sheet concerned's tab and choose View code... then directly after the Sub Worksheets_change line paste in one of my suggestions.