Table.FillDown
Table.FillDown(table as table, columns as list) as table
지정된 table
테이블에서 이전 셀의 값이 columns
에 지정된 null 값을 가진 아래 셀로 전파되는 테이블을 반환합니다.
열 [Place]의 null 값을 해당 열의 위에 있는 값으로 채운 테이블을 반환합니다.
사용량
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"}
)
출력
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"]
})