Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello All,
I need Help with DAX, in M-Code i achieved but i try to Create Calculated Column but its not working
Custom Column in Power Query Editor
Test = if
List.Contains({"Project","Small Project"},[Type])
and (List.Contains({"Human Resources","Materials Management","Quote to Cash","Super Users Supply Chain","Supply Chain"},[Owner])
or List.Contains ({"Quote to Cash"},[Function])
or List.Contains ({"Commodity Planning","Corrections","Customer Service","Human Resources","Master Scheduling","Order Change Specialists","Production Planning","Purchasing"},[Business])) then "X"
else ""
I tried to achieve the same thing in the Calculated column but was unable, how do I fix it?
Thanks,
Solved! Go to Solution.
@itsranga Try:
Column =
IF(
(
[Type] IN {"Project", "Small Project"} &&
[Owner] IN {"Human Resources", "Materials Management", "Quote to Cash", "Super Users Supply Chain", "Supply Chain"}
) ||
[Function] IN { "Quote to Cash" } ||
[Business] IN { "Commodity Planning","Corrections","Customer Service","Human Resources","Master Scheduling","Order Change Specialists","Production Planning","Purchasing"},
"X",
""
)
@itsranga Try:
Column =
IF(
(
[Type] IN {"Project", "Small Project"} &&
[Owner] IN {"Human Resources", "Materials Management", "Quote to Cash", "Super Users Supply Chain", "Supply Chain"}
) ||
[Function] IN { "Quote to Cash" } ||
[Business] IN { "Commodity Planning","Corrections","Customer Service","Human Resources","Master Scheduling","Order Change Specialists","Production Planning","Purchasing"},
"X",
""
)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
72 | |
68 | |
41 | |
35 |
User | Count |
---|---|
108 | |
56 | |
52 | |
48 | |
41 |