Utilité : Vérifie si une table est vide (c'est-à-dire, sans lignes).
Syntaxe :
Table.IsEmpty(table as table) as logical
La fonction « Table.IsEmpty » retourne « true » si la table ne contient aucune ligne, et « false » si elle contient au moins une ligne.
Entrée :
table : la table à vérifier.
Sortie :
« true » si la table est vide, sinon « false ».
Exemple :
Vérifier si une table est vide :
Table.IsEmpty(Table1)
Si « Table1 » ne contient aucune ligne, la fonction retourne « true ». Sinon, elle retourne « false ».
Comments