using Lotus Notes script, is there a method to collect documents from a view with the first 3 columns categorized and with formula ?
For example:
First Column formula: @year(date_created)
Second Column formula: @month(date_created)
Third column formula: @day(date_created)
and i want to collect all documents created today.
I try to do this:
array(1)=@year(Date)
array(2)=@month(Date)
array(3)=@day(Date)
set collection=view.getalldocumentsbykey(array(),true)
but the collection do not populates. So i try to change the code to:
array(1)=@year(Date)
array(2)=@month(Date)
array(3)=@day(Date)
Set ViewEntryCollection=view.GetAllEntriesByKey(array(),true)
but it do not work. i try to remove the categorization from all columns but nothing has chenaged.
There is a method in LotusScript to obtain this ? Thank's