select every record
set myList to {field <field name> of selection}
but the reverse doesn't seem to work:
select every record
set field <field name> of selection to myList
Or am I missing something?
I can write it out but it would nice if I could do it in one step:
set listCount to count items in myList
set recNum to 1
repeat until recNum = listCount + 1
set value of field <field name> of record recNum to (item
recNum of myList1) as number
set recNum to recNum + 1
end repeat