Hey guys, I am trying to make a serial number generator with the user's input. My problem with this code is that when I want the array to be on the excel file, it just gives me the last object of the array. However if I use print, it prints all of them. Also I cannot find a way to keep a counter so that after the user is done, the numbers won't repeat. Any help will be very appreciated. Thank You
#!/usr/bin/perl -w
use Excel::Writer::XLSX;
my $workbook = Excel::Writer::XLSX->new( 'simple.xlsx' );
my $worksheet = $workbook->add_worksheet();
print "How many Sirial Numbers do you need?\n";
$comp= ITS;
$mal= <STDIN>;
for ($number=0001; $number< $mal; $number++)
{
$exp= $comp.$number;
}
@array= $exp;
$array_ref = \@array;
$worksheet->write_col( 0,0 , $array_ref);
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.