Excel VBA INSTR Function

Pubblicato il: 27 agosto 2020
sul canale di: EXCEL'N CRICKET (Jithin R Trivandrum)
353
4

Using this simple VBA code we cab find any string available in a sentence.

Sub Findstr()
sheets("Master").Range("B2:B100").ClearContents
For i = 2 To sheets("Master").Range("A" & Rows.Count).End(xlUp).Row
If InStr(1, sheets("Master").Range("A" & i), sheets("Master").Range("F1").Value) 'Use greater than symbol' 0 Then
sheets("Master").Range("B" & i).Value = "Yes"
End If
Next
End Sub


In questa pagina del sito puoi guardare il video online Excel VBA INSTR Function della durata di ore minuti seconda in buona qualità , che l'utente ha caricato EXCEL'N CRICKET (Jithin R Trivandrum) 27 agosto 2020, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 353 volte e gli è piaciuto 4 spettatori. Buona visione!