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'm doing an analysis about the schools in the municipality in an excel sheet I have the data of the schools in the initial years and in the other I have the final years. It happens that some schools have only initial years and others only final years, to solve this problem I wanted to create an auxiliary table with the name of all schools and exclude the repeated ones as shown below:
Table 1: Columns of school early years
Table 2: Columns of school final years
Table that I want to create:
Solved! Go to Solution.
Hi, @Anonymous
If you want to get the name list of all schools, please try calculated table as below:
Table = DISTINCT(UNION(VALUES('Early years schools'[School Name]),VALUES('Final years schools'[School Name])))
or
Table 2 = DISTINCT(UNION('Early years schools','Final years schools'))
Best Regards,
Community Support Team _ Eason
Hi, @Anonymous
If you want to get the name list of all schools, please try calculated table as below:
Table = DISTINCT(UNION(VALUES('Early years schools'[School Name]),VALUES('Final years schools'[School Name])))
or
Table 2 = DISTINCT(UNION('Early years schools','Final years schools'))
Best Regards,
Community Support Team _ Eason
Hi,
I my opinion, you need to Alter Clumn name in both table and use same title for both, or add the new column in each table with common name, then Append those an delete other column and also Rmove Duplicated rows :
Hi,
In the Query Editor, rename the column heading of one table to exactly match the Other. Append the 2 tables and the Remove Duplicates.
Hope this helps.