Thank you for your reply. I had an array inside a hash and the values from the array needed totaling up to one figure and not 20 + values. Just wanted the total of the values instead of them all individually.
I did as follows.
The keys in the %interest_hash were dates and the value was an array. I need to link the key to all the elements of the array added together so I just had one figure for the total.
foreach my $interest_costs (keys %interest_hash) {
my $total = 0;
($total += $_) for @{$interest_hash{$interest_costs}};
$new_interest_hash{$interest_costs} = $total;
}
This code got me the result I needed, however I was told to use map, but have no idea what it is.
I got the desired outcome anyway, but thankyou very much for your reply. It is much appreciated. Only been doing Perl 4 months as a trainee developer and have no other experience computer languages so I think I'll be using perl monks quite often.
Thanks again!

In reply to Re^2: How to add array in Hash by bennierounder
in thread How to add array in Hash by bennierounder

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.