Looking for a way to populate an additional column in a QUERY
function. Example being my data is
A | B
ID | Active
001 | FALSE
002 | FALSE
and using something like =(query(A:A, "Select A, B[=TRUE]"))
I'd like the output to be
A | B
ID | Active
001 | TRUE
002 | TRUE
I am aware that it only takes 15 seconds to convert and populate all FALSE to TRUE, but I'm looking to avoid the manual touch of doing this.
Thanks in advance