Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am attempting to append two queries which share the field, 'Stage'.
I only want to incorporate into the appended query rows with certain stages from query 1 and a second set rows with different stages from query 2.
Is there a way to filter the original queries prior to the append?
Would I need to create another 'sub' query for each of the primary queries containing only the stages I want, then append those 2 new/additional queries?
Solved! Go to Solution.
If you're willing to work in the Advanced Editor a bit, then this isn't too bad.
Try defining the filtered tables first and then using them in Table.Combine:
let
Opps = Table.SelectRows(#"Opportunity Line Details", each [status] = 9),
Pipes = Table.SelectRows(Pipeline_Snapshots, each List.Contains({1..8}, [status])),
Source = Table.Combine({Opps, Pipes})
in
Source
Hi @Anonymous ,
Could you tell me if your problem has been solved?
If it is, kindly Accept it as the solution. More people will benefit from it.
Or you are still confused about it, please provide me with more details about your problem.
Best Regards,
Stephen Tao
If you're willing to work in the Advanced Editor a bit, then this isn't too bad.
Try defining the filtered tables first and then using them in Table.Combine:
let
Opps = Table.SelectRows(#"Opportunity Line Details", each [status] = 9),
Pipes = Table.SelectRows(Pipeline_Snapshots, each List.Contains({1..8}, [status])),
Source = Table.Combine({Opps, Pipes})
in
Source
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 7 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 19 | |
| 14 | |
| 12 | |
| 12 | |
| 9 |