Select specified columns from a table and create a new table
Function:
Select_Columns(table = string, cols = list, new_table_name = string)
Parameters:
Table: Table name on which to perform function
Columns to Select: Columns to select for the new table
New Table Name: Name for the new table
Examples:
Select_Columns(table = Budget, cols = ["Month","Actuals", "Plan"], new_table_name = "Budget Simple")