Table.SelectRowsWithErrors
วากยสัมพันธ์
Table.SelectRowsWithErrors(table as table, optional columns as nullable list) as table
ประมาณ
แสดงตารางที่มีเฉพาะแถวของตารางอินพุตที่มีข้อผิดพลาดในเซลล์อย่างน้อยหนึ่งเซลล์ ถ้ามีการระบุรายการคอลัมน์ เฉพาะเซลล์ในคอลัมน์ที่ระบุเท่านั้นที่จะถูกตรวจสอบหาข้อผิดพลาด
ตัวอย่างที่ 1
เลือกชื่อของลูกค้าที่มีข้อผิดพลาดในแถวของตน
การใช้งาน
Table.SelectRowsWithErrors(
Table.FromRecords({
[CustomerID = ..., Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
})
)[Name]
ผลลัพธ์ของ
{"Bob"}