¿Cómo desactivar Optionbutton en hoja excel?

En una hoja he definido varios optionbutton, para escoger un tipo de mercancía de diferentes tipos, cómo hago para que cuando escojo uno de esos optionbutton, este se desactive o quede en estado inicial cuando al dar clic en él paso a otra hoja, es decir que quede en estado inicial para cuando vuelva a entrar a esa hoja no esté marcado

Este es el procedimiento escrito:

Private Sub Op_Daissy_Click()

Application.ScreenUpdating = False   'Det undgår, at skærmet blinker

 'Det åbnes Userform FrmLogIndKunde, hvor processen af bestillingen begynder

    Load FrmLogIndKunde

    FrmLogIndKunde.Show

    Sheets("Daisy_bestilling").Visible = True

    Sheets("Daisy_bestilling").Unprotect

    Sheets("Startsiden").Visible = False

    Sheets("Ordre").Visible = False

    Sheets("Ordretabel").Visible = False

    Sheets("Varetabel").Visible = False

    Sheets("Faktura").Visible = False

    Sheets("Valutakurser").Visible = False

    Sheets("Kundetabel").Visible = False

    Sheets("Detalje_pdkter").Visible = False

    End Sub

1 respuesta

Respuesta
1

H o l a:

Después de esta línea:

Application.ScreenUpdating = False   'Det undgår, at skærmet blinker

Agrega esta línea:

If OptionButton1 Then OptionButton1 = False

Prueba y me comentas.

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas