in reply to determine a hash key

A double grep should do the trick
my @gt1 = grep { grep $_ > 1, values %{$hash{$_}} } keys %hash;
Although, ultimately you will have to iterate through the hash (this way just does it internally).
HTH

_________
broquaint