How to import huge list of values to array

Okay so I am making game where is over 300 rows of questions. Now I need to add them into array.
Do I really need to write one row by one (one question by one) or can I just import all question from word/excel etc… somehow easily to UE4’s arrays?

Data Tables.

  • Prepare a *.csv file in Excel
  • Create a struct representing your data
  • Load it up as a Data Table

Note, this is not a fully fledged database. The functionality is somewhat limited but storing thousands of rows is pretty straightforward.