Concatenate

Concatenation of two or more columns

Function:

Concatenate(table = string, cols = list, new_col = string)

 

Parameters:

Table: Table name on which to perform function

Column_Name(s) (columns_to_concat): Range of columns using the table index (ex. [1:3,5]) OR column names: [My Column 1, My Column 2]

New Column Name (new_col): Name for new column

 

Examples:

Concatenate(table = Budget, col = ["Month", "Year"], new_col = "Month_Year")