I created an Excel a.xls worksheet using Perl, where I have a field:
date name eid 13/jan/2010 asa 3175
The next time I compile, and if the date is more than the previous date, it should update as wise:
date name eid 13/jan/2010 asa 3175 14/jan/2010 stone 3180
If the date will have the date of the previous line, since the date of the last line is 14/jan/2010 , and the current date is also 14/jan/2010 , then it should not insert any line that should update only the previous record.
source share