Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Lainkito59
Frequent Visitor

Compare column value with the values of another column in Power Query

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.

Lainkito59_0-1695848532647.png
Thanks in advance for your support !

 

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

=Table.AddColumn(YourTableName,"Custom",each if List.Contains(YourTableName[PARENT ID],[ID]) then "AVAILABLE" else null)

View solution in original post

1 REPLY 1
wdx223_Daniel
Super User
Super User

=Table.AddColumn(YourTableName,"Custom",each if List.Contains(YourTableName[PARENT ID],[ID]) then "AVAILABLE" else null)

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Solution Authors
Top Kudoed Authors