I want to create a new spreadsheet each time due to changing data requirements. There will be an existing spreadsheet with the same name so my thought was to delete the exisiting spreadhseet and start fresh but this is not working. Unless I physically remove the existing file first the same data keeps showing up. I tried renameing the "trend report" directory to "trend_report" but this didn't work also. Can you help me get past this hurrled so I can started?
#!/usr/bin/perl use Spreadsheet::WriteExcel; $file = "/web/htdocs/osdsun80.ameritech.com/eadas/West/trend report/We +st.xls"; if (-r "$file") { unlink("$file") or die "Can't Unlink $file: $!"; } # Create a new workbook and add a worksheet my $workbook = Spreadsheet::WriteExcel->new("$file"); my $worksheet = $workbook->addworksheet("West Trend");

In reply to New Spreadsheet by tc1364

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.