diff --git a/src/core/excelreader.cpp b/src/core/excelreader.cpp index c485a38..eee03ef 100644 --- a/src/core/excelreader.cpp +++ b/src/core/excelreader.cpp @@ -11,8 +11,12 @@ void ExcelReader::readSellersFromFile(const std::string& filename, Marketplace* const int START_ROW = 6; const int END_ROW = 349; + int rowCount{}; for (const auto& row : ws.rows(false)) { - //auto test = row[0].value(); - //std::cout << test << "\n"; + // auto test = row[0].value(); + if (rowCount < START_ROW) + continue; + std::cout << row[0].to_string() << "\n"; + rowCount++; } -} \ No newline at end of file +}