my ($item) = grep { $_->{ID} == 32 } @{ $hash->{data} }; # Assumes ID is unique die "No item had ID 32" unless $item; # Now compare Item's state.. if ($item->{State} eq "Stopped"){ print "Oh - I did not expect this\n"; }