Quote Originally Posted by mdmackillop
Hi Johannes,
I don't know of a setting that will do this, but you could manipulate the form position, depending upon the activecell position
MD

Private Sub UserForm_Initialize()
Me.Top = ActiveCell.Top + 150
End Sub

Thanks. This works fine. Only problem is that the userform seems to appear in a random location (for the user), but it is a quick fix to the problem and is certainly much better than having the form appear on top of the active cell, when the active cell happens to be in the same location as the user form.