Jeremy Howard wrote:
>   with $XL->{Application}->{ActiveSheet} {
>     ->cells(1,1) = "Title"
>     ->language() = "English"
>   }
> 
> Does such a thing exist already?

A WTDI exists already:

    for ( $XL->{Application}->{ActiveSheet} ) {
      $_->cells(1,1) = "Title";
      $_->language() = "English";
    }

(presuming lvalue-methods, of course...)

-- 
John Porter

Reply via email to