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.
Hi everyone,
I have this table in Power Query and I want to check if the value in column ID is available in the column PARENT ID.
For example, the ID 12 is available in PARENT ID column so we can create a new column and put "AVAILABLE" and for the ID 6 put "NOT AVAILABLE".
I want to do it in Power Query and not in Power BI because I need to import only the AVAILABLE values.
Thanks in advance for your support !
Solved! Go to Solution.
=Table.AddColumn(YourTableName,"Custom",each if List.Contains(YourTableName[PARENT ID],[ID]) then "AVAILABLE" else null)
=Table.AddColumn(YourTableName,"Custom",each if List.Contains(YourTableName[PARENT ID],[ID]) then "AVAILABLE" else null)
User | Count |
---|---|
8 | |
6 | |
6 | |
5 | |
5 |
User | Count |
---|---|
9 | |
8 | |
6 | |
6 | |
6 |