Forum Discussion
Tony2021
Sep 12, 2022Iron Contributor
Join 2 Crosstabs using a UNION (Syntax)
Experts, I am trying to join 2 queries into a Union. I am getting a syntax in the following: Do you see where I am wrong? The queries work separately. thank you very much. here is m...
- Sep 13, 2022
you can try this.
save Each Crosstab in its own Query.
then Select them to create a Union Query:
Select * From CrosstabQuery1
UNION
Select * From CrosstabQuery2;
Note that both query should have exactly The Same Number of Columns.
arnel_gp
Sep 13, 2022Iron Contributor
you can try this.
save Each Crosstab in its own Query.
then Select them to create a Union Query:
Select * From CrosstabQuery1
UNION
Select * From CrosstabQuery2;
Note that both query should have exactly The Same Number of Columns.
Tony2021
Sep 14, 2022Iron Contributor
Thank you Arnel and Karl. Your strategy worked!