Mi sono incartato e non ne vengo fuori, non riesco a caricare i dati da foglio nelle text box dopo aver cercato il dato nella colonna "A"
funziona tutto ma non il ciclo for......
Questo è il codice che uso..ed è inserito in una userfom ..
- Codice: Seleziona tutto
Private Sub mTrova(ByVal sValore As String)
Dim C As Range
Dim rng As Range
Dim lUltRiga As Long
Dim lRisposta As Long
Dim lng As Long
Dim s As String
Dim sPath As String
s = "ComboBoxCat"
With sh
lUltRiga = .Range("A" & _
.Rows.Count).End(xlUp).Row
Set rng = .Range("A2:E" & lUltRiga)
For Each C In rng
If C.Value = sValore Then
.txtP.Value = sh.Cells(C.Row, 2).Value 'colonna 2
.txtW.Value = sh.Cells(C.Row, 3).Value 'colonna 3
.txtX.Value = sh.Cells(C.Row, 4).Value 'colonna 4
End If
Next
End With
With Me
If Len(.ComboBoxCat.Text) = 0 Then
MsgBox "Nessun dato trovato."
End If
End With
Etc etc etc .........