Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by attn2risky

  1. attn2risky

    PERL if else

    Thanks everyone so much! Kevin your suggestion worked perfectly, thanks!
  2. attn2risky

    PERL if else

    this is what i have now: #!/opt/perl/bin/perl -w system "rm -f ./new_forecastsales.out"; open (NEW, ">>new_forecastsales.out"); open (MATRIX, "matrix.out"); #<MATRIX>; while (<MATRIX>) { @fields = split (/,/); $Enterprise = $fields[0]; $Site = $fields[1]...
  3. attn2risky

    PERL if else

    Thanks so much!! I tried both of the recs above, both don't seem to give me what I'm trying to pull out of the input. I'm getting negative numbers of the BOH which shouldn't appear on the output. It almost seems as if it's completely ignoring any if statment I put in before or in the print...
  4. attn2risky

    PERL if else

    Hi all, I've just been introduced to PERL and am looking for advice on the following snippet of code. I want to have the $TotalDemandData be a result of the input variables it already is (this works) and the new BOH data (which I named $BOHSub) subtract the Total Demand and then ONLY print the...

Part and Inventory Search

Back
Top