The Goal:
using the value from a cell as range for the query function.
Problem:
it propably does not work due to it being multiple values
What I got:
// Cell value that is dynamically generated (info!A1)
"abc!$A2:$H;def!$A2:$H"
// Function I want to call
=QUERY({abc!$A2:$H;def!$A2:$H} , "where Col1 is not null")
// What I tried
=QUERY(indirect(info!A1), "where Col1 is not null")
//The error
"Function INDIRECT parameter 1 value is abc!$A2:$H;def!$A2:$H . It is not a valid cell/range reference"