Table.FillDown
Sözdizimi
Table.FillDown(table as table, columns as list) as table
Hakkında
Belirtilen hücreden table
bir önceki hücrenin değerinin belirtilen hücrenin columns
altındaki null değerli hücrelere yayıldığı bir tablo döndürür.
Örnek 1
[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"]
})