Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^3: Excel::Writer::XLSX -> get the active sheet

by CountZero (Bishop)
on Feb 01, 2014 at 12:50 UTC ( [id://1072964]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Excel::Writer::XLSX -> get the active sheet
in thread Excel::Writer::XLSX -> get the active sheet

It is exactly as you said. The "activesheet" property has no meaning outside of Excel itself. It is the worksheet that is "on top" on your screen and where you can interact with. In Excel::Writer::XLSX that has no meaning, since you have to explicitly choose the worksheet you are working on. You can store that information in any variable and pass that variable to any subroutine you have written. Handing the whole workbook to your subroutine and relying on some (hidden) "activesheet" property to know on which worksheet it needs to work, seems not a good idea to me.

If your subroutine also needs to know in which workbook that worksheet resides, hand it a reference to both the workbook and the worksheet (i.e. the wokbook obkject and the number of the worksheet). As it is impossible to access a worksheet without knowing in which workbook it resides, you will always know from which workbook each worksheet comes. Just save that information in an array or hash

CountZero

A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

My blog: Imperial Deltronics
  • Comment on Re^3: Excel::Writer::XLSX -> get the active sheet

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1072964]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (2)
As of 2024-04-20 03:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found