Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I need a help creating a virtual table where Table 1 and Table 2 have same column names.
I want the certain columns to add up the values, meanwhile the remaining column to remain same. Sample tables shared below. Third table is expected final table.
Solved! Go to Solution.
Hi @nareshr89
Please try
New Table =
GROUPBY (
UNION ( Table1, Table2 ),
[ML],
[Region],
"TR", SUMX ( CURRENTGROUP (), [TR] ),
"OR", SUMX ( CURRENTGROUP (), [OR] ),
"FTEs", SUMX ( CURRENTGROUP (), [FTEs] )
)
Hi @nareshr89
Please try
New Table =
GROUPBY (
UNION ( Table1, Table2 ),
[ML],
[Region],
"TR", SUMX ( CURRENTGROUP (), [TR] ),
"OR", SUMX ( CURRENTGROUP (), [OR] ),
"FTEs", SUMX ( CURRENTGROUP (), [FTEs] )
)
User | Count |
---|---|
13 | |
8 | |
8 | |
7 | |
5 |
User | Count |
---|---|
21 | |
15 | |
15 | |
10 | |
7 |