How do I get the returned variable of my function to be assigned to my new variable?
I have created and tested a function called JoinTables. This function will return a data table. I would like the returned datatable to be assigned to the dtSlopeTable variable. dtSlopeTable = JoinTables(dataTableList, columnGroup);
When I run this, the output table is created with the desired content but it is not associated with the variable name "dtSlopeTable". When I check the value of dtSlo...