I have a Perl script that returns this hash structure :
$VAR1 = {
'Week' => [
'1238',
{
'OUT3FA_5' => 65,
'OUT3A_5' => 20,
'OUT3-Fix' => 45,
'IN1' => 85
},
'1226',
{
'OUT3FA_5' => 30,
'OUT3A_5' => 5,
'OUT3-Fix' => 25,
'IN1' => 40
}
]
};
What I'd like to do is, count the total of IN1 for each week, per example in this case it'll return:
$VAR1 = {
'Week' => [
'1238',
{
'OUT3FA_5' => 65,
'Total_IN1' => 85,
'OUT3A_5' => 20,
'OUT3-Fix' => 45,
'IN1' => 85
},
'1226',
{
'OUT3FA_5' => 30,
'Total_IN1' => 125,
'OUT3A_5' => 5,
'OUT3-Fix' => 25,
'IN1' => 40
}
]
};
And so on for each week.
How can I do this please? Any help would be appreciated.
Here is what I tried to do but it's not working :
my @sum_IN1 = qw(IN1); #kinda useless to use an array just for one value...
for my $num (keys %hash) {
my $found;
my $sum = 0;
for my $key (@sum_IN1) {
next unless exists $hash{$num}{$key};
$sum += $hash{$num}{$key};
$found = 1;
}
$hash{$num}{Total_IN1} = $sum if $found;
}