L
Lorenzo Soncini
Hi folks,
I have outlook XP and i need export some data from Public Folder to Word
document.
Public folder contain a form with some custom field.
Actually I use VBA for filtering the Item and work:
FOR EACH MyItem IN MyFolderItems
IF CDATE(MyItem.UserProperties("MyUserProperties").Value) = Data THEN
ExportToWord(MyItem)
END IF
NEXT
the problem: I have about 355.000 Item in a production folder. How can I
filter that like a SQL WHERE ? I have tried with
FOR EACH MyItem IN MyFolderItems.Restrict([MyUserProperties] = 'Data ')
but don't work. I get an error: "MyUserProperties not found"
Sorry for my bad english and thanks for any idea
Lorenzo S
I have outlook XP and i need export some data from Public Folder to Word
document.
Public folder contain a form with some custom field.
Actually I use VBA for filtering the Item and work:
FOR EACH MyItem IN MyFolderItems
IF CDATE(MyItem.UserProperties("MyUserProperties").Value) = Data THEN
ExportToWord(MyItem)
END IF
NEXT
the problem: I have about 355.000 Item in a production folder. How can I
filter that like a SQL WHERE ? I have tried with
FOR EACH MyItem IN MyFolderItems.Restrict([MyUserProperties] = 'Data ')
but don't work. I get an error: "MyUserProperties not found"
Sorry for my bad english and thanks for any idea
Lorenzo S