Your first searchFormula works fine in a test of mine!
I will test the others tomorrow but its not seems correct.
Ask yourself some question:
- Is my db correctly indexed ?
- Firma$ contains a rigth value for the search or contains some wrong char (i.e. some spaces)? (use the debugger to verify...
What is all() in your code?
You are using i as index for the ForAll cicle (where i is a variant of Notesitem) and the next line you're using the same variable as index for an array??
Do you know something I miss?
Try the code below:
Option Base 0
' so you're sure where arrays starts
Sub...
I think You need something like this:
Dim searchstring$
Dim coll As Notesdocumentcollection
Dim session As New Notessession
Dim db As Notesdatabase
' suppose your db is the current db
Set db=session.Currentdatabase
searchstring$=Inputbox(" ... ' You know this function
' Trimming extra...
I made something similar using a notesdocumentcollection populated with the result of a search in the database, for all document in the collection I can then create an array with the values I need extracted from one or more fields per document and put the array in a multi value field hidden in...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.