my @checkboxes = (); my $checked = 3; for (1 .. 5){ my %rowh = ( name => "desc_$_" , description => "description ($_) ", ) if ($checked == $_) { $rowh{checked} = 1; } push @checkboxes, \%rowh }