DAX Function Guide
NATURALLEFTOUTERJOIN
Sam McKay
CEO & Founder
How does the NATURALLEFTOUTERJOIN work?
NATURALLEFTOUTERJOIN Formula Syntax
NATURALLEFTOUTERJOIN (
<leftJoinTable>, <rightJoinTable>
)
How do you use the NATURALLEFTOUTERJOIN?
The NATURALLEFTOUTERJOIN function can be used to get all the data from left table and only matching records from right table.
Related Blog Posts
Loading
Considerations when using the NATURALLEFTOUTERJOIN?
There is no sort order guarantee for the results.
Columns being joined on must have the same data type in both tables.
The columns used in the join condition are only columns with the same data lineage or with the same name and no data lineage corresponding to physical columns of the data model.
Strict comparison semantics are used during join. There is no type coercion; for example, 1 does not equal 1.0.
Related Video Tutorials
Loading
Formula examples using the NATURALLEFTOUTERJOIN
= NATURALLEFTOUTERJOIN(CustomerDetails,CustomerSalary)
= NATURALLEFTOUTERJOIN(‘Now’,’Before’)
Related Courses
Loading