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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
John21Morales
New Member

DAX command "if" statement not finding column

John21Morales_0-1672603121040.png

New to Power BI, I couldn't find out how to put the column "Churn Label" into the IF Command, so I went to the solutions (Of the exercise I was doing for DataCamp) to find out. It turns out, I knew how to do it but the way I was typing it in was not working.

 

Anyways, I tried to type it in as "Churneb" in the solutions file, and the same exact DAX command did not work. Is there something I am missing? 

 

Thanks in advance!

 

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @John21Morales 

You are creating a measure. You can use the same formula to create a calculated column. Otherwise, you need to wrap the column with SELECTEDVALUE:

IF ( SELECTEDVALUE ( 'Table'[Column] ) = "ABC", 1, 0 )

View solution in original post

1 REPLY 1
tamerj1
Super User
Super User

Hi @John21Morales 

You are creating a measure. You can use the same formula to create a calculated column. Otherwise, you need to wrap the column with SELECTEDVALUE:

IF ( SELECTEDVALUE ( 'Table'[Column] ) = "ABC", 1, 0 )

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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