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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

Top Solution Authors