Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Help with PowerQuery syntax using "if" and "and"

Good morning, other threads didn't help me with my syntax which is throwing an "Error".  I'm creating a custom column in PowerQuery.

 

=if ([Part Type]="TC" and [Part Size]<7) then 2

     else if ([Part Type]="TC" and [Part Size]>13.38) then 2

       else if ([Part Type]="LC" and [Part Size]<7) then 2

          else if ([Part Type]="LC" and [Part Size]>13.38) then 2

             else 0

 

I have two part types, LC and TC.  I have six sizes.  If the size is less than 7 or more than 13.38 i want a returned value of 2. if the size is in between 7 and 13.38 I want a returned value of 0.  I used multiple lines for clarity here but the formula is just ran as a sentence in the Custom Column Formula box.

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous,

 

You can add a custom column with following formula:

#"Added Custom" = Table.AddColumn(#"Previous Step", "Custom", each if [Part Size]>=7 and [Part Size]<=13.38 then 0 else if [Part Type]="TC" or [Part Type]="LC" then 2 else 0)

Regards,

Xiaoxin Sheng

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Anonymous,

 

You can add a custom column with following formula:

#"Added Custom" = Table.AddColumn(#"Previous Step", "Custom", each if [Part Size]>=7 and [Part Size]<=13.38 then 0 else if [Part Type]="TC" or [Part Type]="LC" then 2 else 0)

Regards,

Xiaoxin Sheng

LivioLanzo
Solution Sage
Solution Sage

Hi @Anonymous

 

what is the error?

 

 

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

Anonymous
Not applicable

Actually, your question helped me think through why is it an error. My size was data typed as text, not a number.  Thank you!

Anonymous
Not applicable

My column just says "Error".  Any part number that is not TC and LC returns zero but any part number that is TC or LC returns "Error", regardless of size.  Thanks for taking a look...I thought my logic was okay but I'm missing something.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors