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

Exceeded maximum size allowed when using join tables

Hi Guys,

 

If I pass the following code with DAX in directquery I get the message; exceeded the maxmum allowed size of '1000000' rows. I think it has to do with the +0 in my code. Anyone know what I did wrong here. 

 

tablnew = 
VAR A =
    SELECTCOLUMNS (
        'Loan',
        "LoanID", 'LoanPart'[LoanID]+0,
        "Balance", 'LoanPart'[Balance]
    )
VAR B =
    SELECTCOLUMNS (
        'Pipeline',
        "LoanID", 'Pipeline'[LoanID]+0,
        "Groupproduct", 'Pipeline[Groupproduct]
    )
VAR Result =
    NATURALLEFTOUTERJOIN ( A, B )
RETURN
    Result

 

1 REPLY 1
Anonymous
Not applicable

why don't you simply add pipeline(Group Product) to Loan table using lookupvalue?

 

Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar

If I resolve your problem Mark it as a solution and give kudos.

check my blog here
https://community.powerbi.com/t5/Community-Blog/Connecting-to-a-Tabular-Model-Using-Power-BI/ba-p/91...

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.

Top Solution Authors