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
therugger2000
New Member

If statement

Hello,

I am having difficulty with the If stayement syntax. I am attempting to calcultae a column:

 

NewColumn =

        IF(Table1[Fund] = "206010D22", (Table1[Commitments])+DAMPS[DAMPSSUM]), (Table1[Commitments]))

 

I can get IF(Table1[Fund] = "206010D22", (Table1[Commitments])+DAMPS[DAMPSSUM]) to work, just not ther "ELSE"

 

 

 

Thank you in advance

1 ACCEPTED SOLUTION
tackytechtom
Super User
Super User

Hi @therugger2000 ,

 

Are you trying to calculate the column in DAX or Power Query? As per your syntax it looks like you want a solution in DAX. Could it be the parantheses that are the problem?

 

Maybe try this:

NewColumn =

        IF ( Table1[Fund] = "206010D22", Table1[Commitments] + DAMPS[DAMPSSUM], Table1[Commitments] )

 

Let me know if this helps 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/

 



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

View solution in original post

1 REPLY 1
tackytechtom
Super User
Super User

Hi @therugger2000 ,

 

Are you trying to calculate the column in DAX or Power Query? As per your syntax it looks like you want a solution in DAX. Could it be the parantheses that are the problem?

 

Maybe try this:

NewColumn =

        IF ( Table1[Fund] = "206010D22", Table1[Commitments] + DAMPS[DAMPSSUM], Table1[Commitments] )

 

Let me know if this helps 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/

 



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

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.

Top Solution Authors