top of page

Fonction Table.Last

  • contact487947
  • il y a 12 minutes
  • 1 min de lecture

Utilité : Renvoie la dernière ligne d'une table.


Syntaxe :


Table.Last(table as table) as record

« Table.Last » retourne la dernière ligne d'une table sous forme de record. Si la table est vide, cela retourne une erreur.


Entrée :


  • table : la table d'entrée.


Sortie :


  • Le dernier enregistrement (record) de la table.


Exemple :


Table.Last(Table1)

Cela retourne la dernière ligne de « Table1 ».

Posts récents

Voir tout
Fonction Table.FromPartitions

Utilité :   Combine plusieurs partitions en une seule table. Syntaxe : Table.FromPartitions(partitions as list) as table «...

 
 
 
Fonction Table.InsertRows

Utilité :   Insère des lignes dans une table à une position spécifiée. Syntaxe : Table.InsertRows(table as table, index as number,...

 
 
 
Fonction Table.FirstValue

Utilité :   Renvoie la première valeur d'une colonne. Syntaxe : Table.FirstValue(table as table, optional default as any) as any «...

 
 
 

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
bottom of page