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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
dreaves1
Helper II
Helper II

Create a custom column using an IF statement

Power BI Error number 1.PNGHi All,

 

I'm trying to create a custom column for offers rejected/rescinded out of two columns, Offers and Hires. I want to substract the number of Offers by Hires if the number of Offers is more than the number of Hires. If the number of Offers is least than the number of Hires, I want to keep the number in the Offers field. Can someone please demonstrate how this can be accomplished? 

1 ACCEPTED SOLUTION
harshnathani
Community Champion
Community Champion

Hi @dreaves1 ,

 

 

Create a new Column

 

New Column =
SWITCH (
    TRUE (),
    'Table'[Offers] > 'Table'[Hires], 'Table'[Offers] - 'Table'[Hires],
    'Table'[Offers] < 'Table'[Hires], 'Table'[Offers],
    BLANK ()
)

 


Regards,

Harsh Nathani


Appreciate with a Kudos!! (Click the Thumbs Up Button)

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

 

View solution in original post

8 REPLIES 8
harshnathani
Community Champion
Community Champion

Hi @dreaves1 ,

 

 

Create a new Column

 

New Column =
SWITCH (
    TRUE (),
    'Table'[Offers] > 'Table'[Hires], 'Table'[Offers] - 'Table'[Hires],
    'Table'[Offers] < 'Table'[Hires], 'Table'[Offers],
    BLANK ()
)

 


Regards,

Harsh Nathani


Appreciate with a Kudos!! (Click the Thumbs Up Button)

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

 

HI @dreaves1 ,

 

You need to create this in Power BI Desktop.

 

1.jpg

 

 

Regards,

Harsh Nathani

 

dreaves1_0-1594759083025.png

It won't recognize my table now and I get an error message. 

Hi @dreaves1 ,

 

Or create a conditional column in 'Power Query'.

v-lionel-msft_0-1594782205418.png

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

For a custom Column Formula in Power Query you can use

 

If [Offers] > [Hires] then [Offers] - [Hires] else [Offers]

 

Regards,

HN

Hi @dreaves1 ,

 

 

Follow these steps

 

1.jpg2.JPG3.JPG

 

 


Regards,

Harsh Nathani


Appreciate with a Kudos!! (Click the Thumbs Up Button)

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

Greg_Deckler
Community Champion
Community Champion

@dreaves1 - Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.

 

That being said, the syntax for IF statements is:

DAX: IF([Column1] = "Something" || [Column 2] = "Something else",true,false)

 

You can use && and || for logical AND and OR statements.

 

Power Query: if [Column1] = "Something" then "True" else "False"

 

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
ryan_mayu
Super User
Super User

@dreaves1 

please provide the sample data and expected output.

 





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

Proud to be a Super User!




Helpful resources

Announcements
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.