Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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 |
---|---|
67 | |
61 | |
52 | |
36 | |
35 |
User | Count |
---|---|
84 | |
74 | |
56 | |
45 | |
44 |