I am actually looking for a row count in the while spreadsheet nt just a range.
La cuisson du pot au feu <[EMAIL PROTECTED]> wrote:
>Le Mardi 23 Octobre 2001 16:24, F.H a écrit :
>You need to use
>Range["B9"]->CurrentRegion->Rows->Count;
>Range["B9"]->CurrentRegion->Column->Count;
>
>
>hi, Alon
Here's one for you. I am hoping someone can criticize this or suggest some better way
of writing parts of this code.
Regards
I.S
#!/usr/bin/perl -w
use strict;
my $pass1 = "./passwd";
my $pass2 = "./passwd.old";
open PASS1 , "< $pass1" or die "Error opening $pass1: $!\n";;
open PASS2 , "< $
Hi all,
Is there a nice and neat way of writing this:
#!/bin/perl
$command1 = "/bin/csh";
$command2 = "source /usr/users/.cshrc";
system "command1";
system "command2";
Thanks
I.S
__
Your favorite stores, helpful shopping tools and
It seems that Perl doesn't pick up env variables (on UNIX) automatically. the code
below contain only a portion of the program and calls so many env variables.
so instead of using %ENV and call each env variable. I wanted to use source to grab
all my env. vars at once.
I hope I am a little clea