Bonjour,
Je vais essayé d'exprimer clairement mon souci.
J'ai 3 Boutons Radio qui représentent 3 types différents (AA / BB & CC)
J'ai 5 Boutons (Simple) qui représentent 5 types de compositions possibles ( 11 / 22 / 33 / 44 / 55 )
Je pense que vous allez hurler en voyant le code, qu'il y a moyen de faire mieux ... pour l'instant seule la partie "A attribuer au Bouton Radio BB" est active.
Les parties AA & CC sont commentées pour les laisser inactives, quant aux 3 Boutons Radio ils ne sont pas attribués a une macro et franchement je sais pas par quel bout commencé ... Un coup de pouce serait bienvenu.
Je vais essayé d'exprimer clairement mon souci.
J'ai 3 Boutons Radio qui représentent 3 types différents (AA / BB & CC)
J'ai 5 Boutons (Simple) qui représentent 5 types de compositions possibles ( 11 / 22 / 33 / 44 / 55 )
Code:
'
' A attribuer au Bouton Radio AA
'
' Macro attribuée au Bouton 11
Sub Compo_11()
Range("K15").Value = "11"
Range("I21").Formula = "=I15"
Range("I29").ClearContents
End Sub
' Macro attribuée au Bouton 22
Sub Compo_22()
Range("K15").Value = "22"
Range("I21").Formula = "=I15*(3/4)"
Range("I29").Formula = "=I15*(1/4)"
End Sub
' Macro attribuée au Bouton 33
Sub Compo_33()
Range("K15").Value = "33"
Range("I21").Formula = "=I15*(1/2)"
Range("I29").Formula = "=I15*(1/2)"
End Sub
' Macro attribuée au Bouton 44
Sub Compo_44()
Range("K15").Value = "44"
Range("I21").Formula = "=I15*(1/4)"
Range("I29").Formula = "=I15*(3/4)"
End Sub
' Macro attribuée au Bouton 55
Sub Compo_55()
Range("K15").Value = "55"
Range("I21").ClearContents
Range("I29").Formula = "=I15"
End Sub
'
'
'
' A attribuer au Bouton Radio BB
'
' Macro attribuée au Bouton 11
Sub Compo_11()
Range("K15").Value = "11"
Range("I24").Formula = "=I15"
Range("I30").ClearContents
End Sub
' Macro attribuée au Bouton 22
Sub Compo_22()
Range("K15").Value = "22"
Range("I24").Formula = "=I15*(3/4)"
Range("I30").Formula = "=I15*(1/4)"
End Sub
' Macro attribuée au Bouton 33
Sub Compo_33()
Range("K15").Value = "33"
Range("I24").Formula = "=I15*(1/2)"
Range("I30").Formula = "=I15*(1/2)"
End Sub
' Macro attribuée au Bouton 44
Sub Compo_44()
Range("K15").Value = "44"
Range("I24").Formula = "=I15*(1/4)"
Range("I30").Formula = "=I15*(3/4)"
End Sub
' Macro attribuée au Bouton 55
Sub Compo_55()
Range("K15").Value = "55"
Range("I24").ClearContents
Range("I30").Formula = "=I15"
End Sub
'
'
'
' A attribuer au Bouton Radio CC
'
' Macro attribuée au Bouton 11
Sub Compo_11()
Range("K15").Value = "11"
Range("I25").Formula = "=I15"
Range("I31").ClearContents
End Sub
' Macro attribuée au Bouton 22
Sub Compo_22()
Range("K15").Value = "22"
Range("I25").Formula = "=I15*(3/4)"
Range("I31").Formula = "=I15*(1/4)"
End Sub
' Macro attribuée au Bouton 33
Sub Compo_33()
Range("K15").Value = "33"
Range("I25").Formula = "=I15*(1/2)"
Range("I31").Formula = "=I15*(1/2)"
End Sub
' Macro attribuée au Bouton 44
Sub Compo_44()
Range("K15").Value = "44"
Range("I25").Formula = "=I15*(1/4)"
Range("I31").Formula = "=I15*(3/4)"
End Sub
' Macro attribuée au Bouton 55
Sub Compo_55()
Range("K15").Value = "55"
Range("I25").ClearContents
Range("I31").Formula = "=I15"
End Sub
Je pense que vous allez hurler en voyant le code, qu'il y a moyen de faire mieux ... pour l'instant seule la partie "A attribuer au Bouton Radio BB" est active.
Les parties AA & CC sont commentées pour les laisser inactives, quant aux 3 Boutons Radio ils ne sont pas attribués a une macro et franchement je sais pas par quel bout commencé ... Un coup de pouce serait bienvenu.
Dernière édition: