Hey, so i have this Excel document with a column of names all on different rows and i was wondering if theres a way to add each name to the array as its own element
If it’s an Excel file that you can edit, you can just export it as a CSV file and parse the string it gives you using s.Split(',')
. There’s even an overload which lets you remove empty strings, assuming some of your boxes are empty.