in reply to Re^2: Win32::OLE Excel LastCol not working consistently
in thread Win32::OLE Excel LastCol not working consistently
my $LastRow = $sheet->UsedRange->Find({What=>"*",SearchDirection=>xlPr +evious,SearchOrder=>xlByRows})->{Row}; my $LastCol = $sheet->UsedRange->Find({What=>"*",SearchDirection=>xlP +revious,SearchOrder=>xlByColumns})->{Column};
|
|---|