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

Filter prior to Append

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?

 

2022-01-04_08h30_22.png

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

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

View solution in original post

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

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

AlexisOlson
Super User
Super User

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

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
Top Kudoed Authors