Hello ,
I’m currently working on the excel parts of training , and I am attempting to create a table that makes up the sum of values from a recovered datatable under specific conditions , however , I find myself against a wall here:
My goal is to add the name of a society in the first column of my data table , and the sum of it’s debt in the second one , however as I understand , I can only add to a Table’s row by using an array , which will require the two elements to be of the same type. But since I know a Table can (and likely often does) have different object types depending on it’s rows , how can I add two elements of different types to the current row of a data table ?
Yes , that is what I’m trying to use , which as I understand requires an array to be used , which itself requires data of the same type , doesn’t it ?
Or could I use variable names attributed to various types instead of the 1’s you used in your example ?