# -*- coding: iso-8859-1 -*- #. // _ex_LastCol.py #. // Dernière colonne d'une feuille. def ex_LastCol( oSheet ): return oSheet.Cells.SpecialCells( 11 ).Column # // xlCellTypeLastCell = 11 ''' Dernière modification : 2022-03-03 from _ex_LastCol import ex_LastCol # // Dernière colonne d'une feuille. '''