A question about fetching sorted records
A question about fetching sorted records
http://kbase.creator.zoho.com/records/fetch-records-within-a-range
in the above document, this:
rec = Contact [ID != 0] sort by Added_Time range from 1 to 5;
so, my question is, if I do a
for each r in rec
{
list.add (r.Name);
}
Will it add Names from the records to the list in sorted order of Added_Time?