diff --git a/docs/_pages/guides/3-read-data-from-specific-sheet.md b/docs/_pages/guides/3-read-data-from-specific-sheet.md index c1cd547..13f83e6 100644 --- a/docs/_pages/guides/3-read-data-from-specific-sheet.md +++ b/docs/_pages/guides/3-read-data-from-specific-sheet.md @@ -22,6 +22,8 @@ foreach ($reader->getSheetIterator() as $sheet) { if ($sheet->getName() === 'summary') { foreach ($sheet->getRowIterator() as $row) { // do something with the row + $row->getCells()[0]->getValue(); + $row->getCells()[1]->getValue(); } break; // no need to read more sheets }