Forum Discussion
dreaves1
6 years agoHelper II
Create a custom column using an IF statement
Hi 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 m...
- Anonymous6 years ago
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!
dreaves1
6 years agoHelper II
It won't recognize my table now and I get an error message.
Anonymous
6 years agoNot applicable
For a custom Column Formula in Power Query you can use
If [Offers] > [Hires] then [Offers] - [Hires] else [Offers]
Regards,
HN
- Anonymous6 years agoNot applicable
Hi dreaves1 ,
Follow these steps
Regards,Harsh Nathani
Appreciate with a Kudos!! (Click the Thumbs Up Button)Did I answer your question? Mark my post as a solution!