Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi all,
I need help with a formula/new column. Basically, if orderprocess[groupno] = 9, and orderprocess[vendorID] has a value, and orderprocess[partnumber] is not 0, return YES, else No.
What I'm trying to do is create a new column that just says Yes or No according the above rules.
I need some inspiration, I'm stuck!
Thanks!
Solved! Go to Solution.
Hello @randyrettig ,
use the following calculated column
new column = IF(orderprocess[groupno] = 9 && orderprocess[vendorID] <> BLANK() && orderprocess[partnumber] <>0 , "Yes","No")
The pbix file that I used to create the formula for your reference.
Proud to be a Super User! | |
Hello @randyrettig ,
use the following calculated column
new column = IF(orderprocess[groupno] = 9 && orderprocess[vendorID] <> BLANK() && orderprocess[partnumber] <>0 , "Yes","No")
The pbix file that I used to create the formula for your reference.
Proud to be a Super User! | |
Awesome, thank you!
User | Count |
---|---|
117 | |
74 | |
62 | |
50 | |
46 |
User | Count |
---|---|
174 | |
125 | |
60 | |
60 | |
57 |