-
format label resultat
je ne connais pas le resultat du label45 et je souhaiterai lui mettre un format format 2 chiffre apres la virgule comment je fais svp
Code:
Label45.Caption = Val(Me.Label40.Caption) + Val(Me.Label41.Caption) + Val(Me.Label42.Caption) + Val(Me.Label43.Caption) + Val(Me.Label44.Caption)
-
Re-bonjour,
Essais comme cela
Code:
Label45.Caption = Format(Val(Me.Label40.Caption) + Val(Me.Label41.Caption) + Val(Me.Label42.Caption) + Val(Me.Label43.Caption) + Val(Me.Label44.Caption),"# ##0.00")
-
tout fonctionne bien merci a tout a l'heure!
:ccool: