Power Query ระดับกลางใน Excel
Lyndsay Girard
Performance Analytics Consultant

Formula bar:

Advanced Editor:


If... Then... ElseANDORConditional Logic เบื้องต้น
if age >= 65
and arrivalmode = "Car"
then "group1"
else "group2"
If... Then... ElseAND ORConditional Logic แบบกำหนดเอง
if age >= 65 and age <= 80
and arrivalmode = "Car"
then "group1"
else if age >= 65 and age <= 80
and arrivalmode = "ambulance"
then "group1a"
else "group2"





Table.AddIndexColumn
Power Query ระดับกลางใน Excel