7 lines
215 B
PowerQuery
7 lines
215 B
PowerQuery
let
|
|
// Pour filtrer par période, remplacez null par [date_debut = "2026-01-01", date_fin = "2026-12-31"]
|
|
Source = fnApiGet("/remboursements", null),
|
|
Resultat = Table.FromRecords(Source)
|
|
in
|
|
Resultat
|