Here is a macro that opens a form which appears in the center of my computer screen.
Code:
Sub OpenHarvestForm()
Application.WindowState = xlMinimized
frmHarvest.Show
Application.WindowState = xlMaximized
ActiveWorkbook.Sheets("GrpRecords").Activate
End Sub
My question is, can I add something to this code, so that my form automatically pops up in the bottom-right side of the window?