Hello friend, I have two tables that have different columns but when I concatenate them, having different columns does not leave the information in a single row.
Because, I have two tables that have 16 records each and when performing the JOINER it creates 256 rows and so I don’t want the rows to be multiplied but instead I want 32 rows to be left, that is, to add them.
Hello @knimediger What is your input data (both tables)? // Yes, both are tables
What must be achieved in terms of production? I have information about the previous month and the current month, both tables have the same structure, and what I want is to compare the value of the column, for example called LONG TERM, of the current month with the previous month.
@hmfa If I do a joiner it multiplies so if I have 16 on one side and 16 on the other side when doing the joiner it appears 256 records and I don’t want that, I want them to continue being 16 records but I want to identify the column for example LONG TERM of the table 1 and the LONG TERM column of table 2 in the same row…