Previously I have imported my excel spreadsheet the common way. Now I want to get my information automatically from writingg the code in main. I have written the following so far to get a single cell, but I want to find out how to get the information from many rows and many columns.
insertInto(db_table).columns(db_table.db_column).values(data.getCellNumericValue("Sheet1", 5, 4)).execute();
simply use for-loops across all sheets (
getNumberOfSheets()
), all columns (getLastCellNum(row)
) and all rows (getLastRowNum()
).API calls detailed in AnyLogic help for you (at the bottom) :)