Table.RemoveRowsWithErrors
통사론
Table.RemoveRowsWithErrors(table as table, optional columns as nullable list) as table
소개
하나 이상의 셀에 오류가 포함된 입력 테이블에서 행이 제거된 테이블을 반환합니다. 열 목록을 지정하면 지정된 열의 셀만 오류를 검사합니다.
예제 1
첫 번째 행에서 오류 값을 제거합니다.
사용량
Table.RemoveRowsWithErrors(
Table.FromRecords({
[Column1 = ...],
[Column1 = 2],
[Column1 = 3]
})
)
출력
Table.FromRecords({
[Column1 = 2],
[Column1 = 3]
})