Suppose I have something like:
IF Kount > 1000 then
Ok, at the bottom of each output file, there is a blank record. Can this be avoided? Just a few files (25 or so), I don't mind going in and taking out the blank line, but 100s of them it gets tedious.
(I have 590 cemeteries I transcribed.)
Is there a way to avoid the last record being blank?
Yes, the variables contain data the last time they print to the file, as far as I can tell watching the debugger.
Thanks.
Robert
IF Kount > 1000 then
Print #2, Lastname$, Firstname$, Placeb$, Placed$
elsePrint #3, Lastname$, Firstname$,CemName$, State$
end ifOk, at the bottom of each output file, there is a blank record. Can this be avoided? Just a few files (25 or so), I don't mind going in and taking out the blank line, but 100s of them it gets tedious.

Is there a way to avoid the last record being blank?
Yes, the variables contain data the last time they print to the file, as far as I can tell watching the debugger.
Thanks.
Robert
Comment