# -*- coding: iso-8859-1 -*- #. // _ex_LastRow.py #. // Dernière ligne d'une feuille. def ex_LastRow( oSheet ): return oSheet.Cells.SpecialCells( 11 ).Row # // xlCellTypeLastCell = 11 ''' Dernière modification : 2022-02-10 from _ex_LastRow import ex_LastRow # // Dernière ligne d'une feuille. '''