Table.FillDown
Table.FillDown(table as table, columns as list) as table
Belirtilen table
'da, önceki hücrenin değerinin altındaki null değerli hücrelere yayıldığı belirtilen columns
'e göre bir tablo döndürür.
[Place] sütununda null değerler içeren ve tablodan üstlerindeki değerle doldurulmuş bir tablo döndürür.
Kullanım
Table.FillDown(
Table.FromRecords({
[Place = 1, Name = "Bob"],
[Place = null, Name = "John"],
[Place = 2, Name = "Brad"],
[Place = 3, Name = "Mark"],
[Place = null, Name = "Tom"],
[Place = null, Name = "Adam"]
}),
{"Place"}
)
çıkış
Table.FromRecords({
[Place = 1, Name = "Bob"],
[Place = 1, Name = "John"],
[Place = 2, Name = "Brad"],
[Place = 3, Name = "Mark"],
[Place = 3, Name = "Tom"],
[Place = 3, Name = "Adam"]
})