Table.FromPartitions
Syntaxe
Table.FromPartitions(partitionColumn as text, partitions as list, optional partitionColumnType as nullable type) as table
À propos
Retourne une table qui est le résultat de la combinaison d’un ensemble de tables partitionnées, partitions
. partitionColumn
est le nom de la colonne à ajouter. Le type de la colonne a pour valeur par défaut any
, mais peut être spécifié par partitionColumnType
.
Exemple 1
Trouvez le type d’élément dans la liste {number}
.
Utilisation
Table.FromPartitions(
"Year",
{
{
1994,
Table.FromPartitions(
"Month",
{
{
"Jan",
Table.FromPartitions(
"Day",
{
{1, #table({"Foo"}, {{"Bar"}})},
{2, #table({"Foo"}, {{"Bar"}})}
}
)
},
{
"Feb",
Table.FromPartitions(
"Day",
{
{3, #table({"Foo"}, {{"Bar"}})},
{4, #table({"Foo"}, {{"Bar"}})}
}
)
}
}
)
}
}
)
Sortie
Table.FromRecords({
[
Foo = "Bar",
Day = 1,
Month = "Jan",
Year = 1994
],
[
Foo = "Bar",
Day = 2,
Month = "Jan",
Year = 1994
],
[
Foo = "Bar",
Day = 3,
Month = "Feb",
Year = 1994
],
[
Foo = "Bar",
Day = 4,
Month = "Feb",
Year = 1994
]
})