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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Check if Value Exits on another table/colum and display message.

I have table 1 that lists project ID's.  I have table 2 which has subset of Project IDs.  How do I check if the "selected project" from table 1 exists in table 2 and display a message if true. (ex: "Project Exists")

1 ACCEPTED SOLUTION
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

You may create calculated column in Table1 like DAX below.

 

Column1 = IF(ISBLANK(LOOKUPVALUE(Table2[ProjectID],Table2[ProjectID],Table1[ProjectID])) , BLANK(), "Project Exists")

 

Best Regards,

Amy 

 

Community Support Team _ Amy

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

You may create calculated column in Table1 like DAX below.

 

Column1 = IF(ISBLANK(LOOKUPVALUE(Table2[ProjectID],Table2[ProjectID],Table1[ProjectID])) , BLANK(), "Project Exists")

 

Best Regards,

Amy 

 

Community Support Team _ Amy

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

FrankAT
Community Champion
Community Champion

Hi @Anonymous 

you can check this with Power Query if you merge these two tables with the inner join like this:

 

 

// Table 1
let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCjAwVIrVAdEmUNoISltAaEMDpdhYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Project = _t])
in
    Source

// Table 2
let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCjAwUYrVAdHGUNpCKTYWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Project = _t])
in
    Source

// Projects
let
    Source = Table.NestedJoin(#"Table 1", {"Project"}, #"Table 2", {"Project"}, "Table 2", JoinKind.Inner),
    #"Removed Columns" = Table.RemoveColumns(Source,{"Table 2"}),
    #"Renamed Columns" = Table.RenameColumns(#"Removed Columns",{{"Project", "Concurrent Project"}})
in
    #"Renamed Columns"

 

 

25-08-_2020_22-56-40.png

 

Regards FrankAT

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors