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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

VOID

...

5 REPLIES 5
ricardocamargos
Continued Contributor
Continued Contributor

Hi @Anonymous,

 

You can use the merge (left join) function in Power Query. When the right side is null it`s available.

 

Let me know if u need some help.

 

Thanks,

 

Ricardo

Anonymous
Not applicable

Thanks Ricardo.

 

Yes, I think I will need more detail.

 

I have seen other functions here, but can't seem to get them to work.

 

https://community.powerbi.com/t5/Desktop/DAX-query-to-compare-a-value-in-one-table-to-see-if-it-exis...

@Anonymous,

 

https://docs.microsoft.com/en-us/power-bi/desktop-shape-and-combine-data

 

You just need to merge the datasets using the left join.

 

If u wanna use DAX u can use the function EXCEPT:

 

https://www.tutorialspoint.com/dax_functions/dax_except_function.htm

 

Thanks,

 

Ricardo

Anonymous
Not applicable

@ricardocamargos

 

Veing a less sophistocated user and a bit of a newb, I used the following statement:

 

Column = CONTAINS(Table2, Table2[Value], Table1[Value])

 

This creates a True/Flase value.  I change the value to text, and wrote an if statment that returns a vaule of Sold or Available.  Not ideal - but functional.

 

What would you recommend at the easiest way to apply a DAX statement that returns a desired value i.e. Sold or Available, when an ID matches or not from two tables?

 

Thanks.

@Anonymous,

 

You can create a measure using the EXCEPT function, passing que ID`s. 

Sold = VAR tbl1 = SELECTCOLUMNS(TABLE_1, "ID")

VAR tbl2 = SELECTCOLUMNS(TABLE_2, "ID")

VAR tbl = EXCEPT(tbl1; tbl2)

RETURN

    COUNTX(tbl; ID)

 

Using this measure in a table you can visualize if it`s available or not, it will return 0 or non 0;

 

Thanks,

 

Ricardo

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.