[vba-basic] retrouver une valeur dans un tableau


/ Published in: Visual Basic
Save to your folder(s)

rechercher une valeur dans une variable tableau (Array) en VBA

Find some value into an array


Copy this code and paste it in your HTML
  1. Function in_array(tableau, recherche)
  2.  
  3. 'https://www.excel-pratique.com/fr/astuces_vba/recherche-tableau-array.php
  4.  
  5. in_array = False
  6.  
  7. For i = LBound(tableau) To UBound(tableau)
  8. If tableau(i) = recherche Then 'Si valeur trouvée
  9. in_array = True
  10. Exit For
  11. End If
  12. Next
  13.  
  14. End Function

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.