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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.