I have a workbook that opens to a certain sheet and the form opens perfectly when the workbook opens. But when i use the macor to reopen the form using this sub it hangs up. It will not hide column "F". The problem is in the highlighted red line. Thanks for you input and help
Sub OpenUserForm()
ActiveWorkbook.Sheets("VILLAGEvisits").Activate
Columns("F").Hidden = True
FrmVillageVisits.Show
End Sub
Bookmarks