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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
JamesRobson
Resolver II
Resolver II

Dynamically Merge Tables Based on Parameter

Hi,

 

 I'm currently taking a PDF order sheet and 'converting' it into a standard format "PDFQuery1" then I merge that into "LoadQuery" that is checking our ERP system for stock, jobs, delvieries etc.

This works fine, so well in fact we now want to expand this to other customers (great!) however each PDF is in a different format so I have created "PDFQuery2" that will convert Customer B pdf into our standard format no problem.

 

Now in my issue is in "LoadQuery" I want to use a paramater, customer code that end user popualtes, to determine which "PDFQuery" to merge in...

 

Original step

= Table.NestedJoin(PDFQuery1, {"CustItemRef"}, PM_Item, {"CustItemRef"}, "PM_Item", JoinKind.LeftOuter)

Attempt 1

 - Add Cust Code

let
Source = Excel.CurrentWorkbook(){[Name="CustCode"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"CustCode", type text}}),
CustCode = #"Changed Type"{0}[CustCode]
in
CustCode

 

then use this to repalce the fixed query name

 

= Table.NestedJoin(CustCode, {"CustItemRef"}, PM_Item, {"CustItemRef"}, "PM_Item", JoinKind.LeftOuter)

however this errors

Expression.Error: We cannot convert the value "10264" to type Table.
Details:
Value=10264
Type=[Type]

 

** PDFQuery1 is actually named 10264 at this point

 

Now I have a work around which is merge all the "PDFQueries" then filter rows based on CustCode however it doesn't seem like a great solution 😞

Had a look elsewhere and only finding solutions for dynmaic columns but always from a fixed query/table so any help appreciated!

 

Thanks,

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @JamesRobson ,

 

The dynamic table name might help you, please kindly refer to

Solved: Dynamic source table name in Power Query - Microsoft Power BI Community

Source = Expression.Evaluate("Table" & parameter, #shared)

 

 

Best Regards,

Stephen Tao

 

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

Thanks for the heads up. I haven't been able to get it working today but I'll keep going at it and try to work out where i'm gonig wrong and mark as resovled if/when i get there.

 

Funnily enough last night I went down the 'if' statement route as a slightly better workaround so good to see I wasn't the only person to try that 🙂

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @JamesRobson ,

 

The dynamic table name might help you, please kindly refer to

Solved: Dynamic source table name in Power Query - Microsoft Power BI Community

Source = Expression.Evaluate("Table" & parameter, #shared)

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks for the heads up. I haven't been able to get it working today but I'll keep going at it and try to work out where i'm gonig wrong and mark as resovled if/when i get there.

 

Funnily enough last night I went down the 'if' statement route as a slightly better workaround so good to see I wasn't the only person to try that 🙂

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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