in reply to Re: fast way to split and sum an input file
in thread fast way to split and sum an input file

Another strong point is TMTOWTDI and that perl has lots of cool built-in's (OP--see perldoc perlrun) for these types of tasks:
perl -F, -lane '$x+=$F[99]; END{print $x}' data.txt