in reply to Array elements in groups of 20
you are using slices, so you need to use @ instead of the singular $ prefix to your array 'unique_vault_list'@tapes_for_box1 = @unique_vault_list[0..19]; @tapes_for_box2 = @unique_vault_list[20..$#unique_vault_list];
Chris
|
|---|