Theramirez
IS-IT--Management
I would like to search for a value in a comma separated textfile. Could someone tell me how to do it ? ...
Thx.
Thx.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim I
I = Instr(1,strRecord,strToFind, 0) ' 0=Case Sensitive, 1=Not
If I > 0 then
....found logic
End if