# -*- coding: iso-8859-1 -*- #. // _ex_LastCell.py from _by_IntToCell import by_IntToCell # // Transforme une cellule Row, Col en caractère. from _ex_LastCol import ex_LastCol # // Dernière colonne d'une feuille. from _ex_LastRow import ex_LastRow # // Dernière ligne d'une feuille. #. // Dernière cellule d'une feuille. def ex_LastCell( oSheet ): return by_IntToCell( ex_LastRow( oSheet ), ex_LastCol( oSheet ) ) ''' Dernière modification : 2022-03-03 from _ex_LastCell import ex_LastCell # // Dernière cellule d'une feuille. '''