Table.ColumnCount
통사론
Table.ColumnCount(table as table) as number
소개
table
테이블의 열 수를 반환합니다.
예제 1
테이블에서 열의 수를 확인하십시오.
사용량
Table.ColumnCount(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"]
})
)
출력
3