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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

If statements

I am trying to do a simple if statement while adding a new column in PowerBi. The two columns I am using are both in the same format (whole number). What I am trying to do is if colum "Proc 2" = null then return the value from column "Proc" else return the value from column "Proc 2", I have tried 2 differnt ways and I always get an error. 

1st attempt - 

= Table.AddColumn(#"Changed Type", "Final Proc", each if([Proc 2]="" then [PROC] else [Proc 2]))

 

2nd attempt - 

= Table.AddColumn(#"Changed Type", "Final Proc", each if([Proc 2]>0 then [Proc 2] else [PROC]))

 

Both are showing this error 

Langdeaux_0-1668706344728.png

 

1 ACCEPTED SOLUTION
Daryl-Lynch-Bzy
Resident Rockstar
Resident Rockstar

Hi @Anonymous - you have an uncessary bracket in the if statement and the term null should be use instead of the text string "" for numbers.

 

= Table.AddColumn(#"Changed Type", "Final Proc", each if [Proc 2] = null then [PROC] else [Proc 2] , Int64.Type)

 

Note use this if you need to consider zeros

 

= Table.AddColumn(#"Changed Type", "Final Proc", each if [Proc 2] = null or [Proc 2] = 0 then [PROC] else [Proc 2] , Int64.Type)

View solution in original post

1 REPLY 1
Daryl-Lynch-Bzy
Resident Rockstar
Resident Rockstar

Hi @Anonymous - you have an uncessary bracket in the if statement and the term null should be use instead of the text string "" for numbers.

 

= Table.AddColumn(#"Changed Type", "Final Proc", each if [Proc 2] = null then [PROC] else [Proc 2] , Int64.Type)

 

Note use this if you need to consider zeros

 

= Table.AddColumn(#"Changed Type", "Final Proc", each if [Proc 2] = null or [Proc 2] = 0 then [PROC] else [Proc 2] , Int64.Type)

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors