Salve, cerco suggerimenti per scrivere codice con cui individuare il valore più piccolo tra sei.
Inserisco il codice che ho scritto per due valori:
Private Sub Command2_Click()
If Text11.Text >= Text10.Text Then
Text5.Text = Format(Val(Text10.Text) * (20 / 100), "###0.00")
End If
If Text11.Text < Text10.Text Then
Text5.Text = Format(Val(Text11.Text) * (20 / 100), "###0.00")
End If
End Sub
'Grazie mille in anticipo