Carlos Arronte Bello
Carlos Arronte Bello

Reputation: 429

Hide unhide sheets from python

I´m trying to hide and unhide some sheets in python.

I´m using openpyxl, but can´t find how to do it.

Any idea, or another library to do this process?

Upvotes: 2

Views: 6468

Answers (1)

R3uK
R3uK

Reputation: 14557

ws.sheet_state = 'hidden'

and I'm guessing for this one :

ws.sheet_state = 'visible'

See : https://stackoverflow.com/a/23170772/4628637

Upvotes: 2

Related Questions