From: basi Date: 2005-12-13T18:07:38+09:00 Subject: KirbyBase 2.5: Problem pdating records Hello, I'm trying to do record upates as follows: tgl_analysis.select.each do |t| if t.exception != 'y' then tgl_analysis.update {|r| r.recno == t.recno}.set do |r| r.word = (some value) r.prefix = (some value) end end end This code removes the selected records, replacing them with blank lines. What did I miss? Thanks! basi