Hi,
I have the following code to loop through the categories in a view which seems to be running extremely slowly
Set OrgNameView=db.Getview("OrgNamesCat")
Set Nav = OrgNameview.CreateViewNav
Set entryA = nav.GetFirst
While Not entryA Is Nothing
Category=entryA.ColumnValues(0)
'
' ***** Other code to retrieve all docs in category and merge some fields to create new document in another database*****
'
Set entryA=Nav.GetNextCategory(entryA)
Wend
I have not written the other code yet as I am not sure that I am doing this in the most efficient way
Any suggestions/comment?
TIA