En la macro del formulario 8 tienes esto:
If Status = "Usuario" Then
UserForm6.CommandButton3.Enabled = False
UserForm6.CommandButton7.Enabled = False
UserForm6.CommandButton4.Enabled = False
UserForm6.CommandButton8.Enabled = False
UserForm6.CommandButton10.Enabled = False
UserForm6.CommandButton11.Enabled = False
UserForm6.CommandButton12.Enabled = False
UserForm6.CommandButton13.Enabled = False
UserForm6.CommandButton14.Enabled = False
UserForm6.CommandButton15.Enabled = False
UserForm6.CommandButton16.Enabled = False
UserForm6.CommandButton17.Enabled = False
UserForm6.CommandButton24.Enabled = False
UserForm6.CommandButton25.Enabled = False
UserForm6.CommandButton26.Enabled = False
UserForm6. CommandButton27. Enabled = False
Le estás diciendo que hacer cuando el estatus es "usuario", pero no le estás diciendo qué hacer cuando es "administrador", entonces debería quedar así:
If Status = "Usuario" Then
UserForm6.CommandButton3.Enabled = False
UserForm6.CommandButton7.Enabled = False
UserForm6.CommandButton4.Enabled = False
UserForm6.CommandButton8.Enabled = False
UserForm6.CommandButton10.Enabled = False
UserForm6.CommandButton11.Enabled = False
UserForm6.CommandButton12.Enabled = False
UserForm6.CommandButton13.Enabled = False
UserForm6.CommandButton14.Enabled = False
UserForm6.CommandButton15.Enabled = False
UserForm6.CommandButton16.Enabled = False
UserForm6.CommandButton17.Enabled = False
UserForm6.CommandButton24.Enabled = False
UserForm6.CommandButton25.Enabled = False
UserForm6.CommandButton26.Enabled = False
UserForm6.CommandButton27.Enabled = False
'frm_Menu.CommandButton13.Enabled = True
Else
UserForm6.CommandButton3.Enabled = True
UserForm6.CommandButton7.Enabled = True
UserForm6.CommandButton4.Enabled = True
UserForm6.CommandButton8.Enabled = True
UserForm6.CommandButton10.Enabled = True
UserForm6.CommandButton11.Enabled = True
UserForm6.CommandButton12.Enabled = True
UserForm6.CommandButton13.Enabled = True
UserForm6.CommandButton14.Enabled = True
UserForm6.CommandButton15.Enabled = True
UserForm6.CommandButton16.Enabled = True
UserForm6.CommandButton17.Enabled = True
UserForm6.CommandButton24.Enabled = True
UserForm6.CommandButton25.Enabled = True
UserForm6.CommandButton26.Enabled = True
UserForm6.CommandButton27.Enabled = True
End If
Saludos.Dante Amor
Recuerda valorar la respuesta.