In an SSIS Data Flow I want to include 2 Power Query Sources, in order to pass the output of the 1st one to the input of the 2nd one. I am guessing i need some in-between step to join the 2 PQs, or not?
I don't have an environment set up to test this, but reading through the documentation I think what you're going to do is have the second PQ Source use a query mode of "Single Query from Variable"
That means that however you pull data in the first query, you have to get the data into something you can work with. That might be a custom script component acting as a destination, an ado.net recordset destination, something. You'd then need to manipulate the data to build your query and then have a second data flow run.