I am trying to explain the earlier and the current situations
Earlier
table1:
orderid A B C Active Customer
100 1 1 2 Y abc
101 1 0 1 Y def
The report is like this:
Orderid A combined({table1.B}+{table1.C})
100 1 3
101 1 1
In the current situation, the columns(A,B,C) of table1
will be removed and the table1 will become
orderid Active Customer
100 Y abc
101 Y def
And I should get the same report result by joining
table2 with table1
table2:
orderid product quantity
100 A 1
100 B 1
100 C 2
101 A 1
101 C 1
table1 must be joined with table2 as the report has some other columns
belonging to table1
Earlier
table1:
orderid A B C Active Customer
100 1 1 2 Y abc
101 1 0 1 Y def
The report is like this:
Orderid A combined({table1.B}+{table1.C})
100 1 3
101 1 1
In the current situation, the columns(A,B,C) of table1
will be removed and the table1 will become
orderid Active Customer
100 Y abc
101 Y def
And I should get the same report result by joining
table2 with table1
table2:
orderid product quantity
100 A 1
100 B 1
100 C 2
101 A 1
101 C 1
table1 must be joined with table2 as the report has some other columns
belonging to table1