Hi experts
Is it possible to to perform join on two tables in VC without using BI query.
I have data in two tables as follows
Month Closed
6 2
7 1
9 2
and
Month Open
8 1
9 1
10 1
and want result as
Month Open closed
6 -- 2
7 -- 1
8 1 --
9 1 2
10 1 --