use strict; use warnings; my ($county,@years) = split /\s+/, <DATA>; my $x = <DATA>; my $county_total; my $year_total; while(<DATA>){ chomp; my($county,@year_county_data) = split /\s+/; $county_total->{$county} += $_ for @year_county_data; foreach (0..$#years){ my $year= $years[$_]; my $data = $year_county_data[$_]; $year_total->{$year} += $data; } } print "County Total\n"; foreach my $county (sort keys %{$county_total}){ print "$county\t", $county_total->{$county},"\n"; } print "====\n"; print "Yearly Total\n"; foreach my $year (sort keys %{$year_total}){ print "$year\t", $year_total->{$year},"\n"; } __DATA__ COUNTY 2001 2002 2003 2004 ------ ------ ------ ------ ------ 26005 432 505 547 555 26021 910 984 1026 1077 26023 225 282 272 299 26025 711 796 809 899 26027 250 319 318 313 26059 196 221 242 292 26077 1170 1371 1439 1439 26149 355 415 346 367 26159 414 434 504 493

In reply to Re: Calculating subtotals from a table by artist
in thread Calculating subtotals from a table by pugsly62

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.