Ciao Andrea,
https://wetransfer.com/downloads/2b9c50a90c0ec0de801e496fadbdd2bf20210213201931/31ec0a43bd9259b7bbd1757e08a1ab0920210213202000/886577
come puoi vedere il risultato che deve apparire sulla Label è quello della cella L7
se ti serve la password è "0"
Nel modulo di codice della tua Userform, sostituisci il codice con:
'========>>
Option Explicit
Private Const sCellaConFormula As String = "L7"
Private Sub TextBox1_Change()
With Worksheets("NIPPLO")
.Cells(7, 6).Value = TextBox1.Text
Me.Label11.Caption = .Range(sCellaConFormula).Text
End With
End Sub
Private Sub TextBox10_Change()
With Worksheets("NIPPLO")
.Cells(9, 5).Value = TextBox10.Text
Me.Label11.Caption = .Range(sCellaConFormula).Text
End With
End Sub
Private Sub TextBox2_Change()
With Worksheets("NIPPLO")
.Cells(7, 3).Value = TextBox2.Text
Me.Label11.Caption = .Range(sCellaConFormula).Text
End With
End Sub
Private Sub TextBox3_Change()
With Worksheets("NIPPLO").Cells(7, 4)
.Value = TextBox3.Text
Me.Label11.Caption = .Range(sCellaConFormula).Text
End With
End Sub
Private Sub TextBox4_Change()
With Worksheets("NIPPLO")
.Cells(8, 4).Value = TextBox4.Text
Me.Label11.Caption = .Range(sCellaConFormula).Text
End With
End Sub
Private Sub TextBox5_Change()
With Worksheets("NIPPLO")
.Cells(7, 5).Value = TextBox5.Text
Me.Label11.Caption = .Range(sCellaConFormula).Text
End With
End Sub
Private Sub TextBox7_Change()
With Worksheets("NIPPLO")
.Cells(11, 5).Value = TextBox7.Text
Me.Label11.Caption = .Range(sCellaConFormula).Text
End With
End Sub
Private Sub TextBox6_Change()
With Worksheets("NIPPLO")
.Cells(7, 2).Value = TextBox6.Text
Me.Label11.Caption = .Range(sCellaConFormula).Text
End With
End Sub
Private Sub TextBox8_Change()
With Worksheets("NIPPLO")
.Cells(11, 6).Value = TextBox8.Text
Me.Label11.Caption = .Range(sCellaConFormula).Text
End With
End Sub
Private Sub TextBox9_Change()
With Worksheets("NIPPLO")
.Cells(11, 7).Value = TextBox9.Text
Me.Label11.Caption = .Range(sCellaConFormula).Text
End With
End Sub
'<<========
Potresti scaricare il file aggiornato Andrea20210214.xlsm
===
Regards,
Norman
