Udostępnij za pośrednictwem


Table.Transpose

Składnia

Table.Transpose(table as table, optional columns as any) as table

O nas

Zamienia kolumny na wiersze i wiersze na kolumny.

Przykład 1

Zamień wiersze tabeli par nazwa-wartość na kolumny.

użycie

Table.Transpose(
    Table.FromRecords({
        [Name = "Full Name", Value = "Fred"],
        [Name = "Age", Value = 42],
        [Name = "Country", Value = "UK"]
    })
)

Dane wyjściowe

Table.FromRecords({
    [Column1 = "Full Name", Column2 = "Age", Column3 = "Country"],
    [Column1 = "Fred", Column2 = 42, Column3 = "UK"]
})