PHP Classes

Get data from first cell in each sheet

Recommend this page to a friend!

      SimpleXLSX  >  All threads  >  Get data from first cell in each sheet  >  (Un) Subscribe thread alerts  
Subject:Get data from first cell in each sheet
Summary:Get data from first cell in each sheet
Messages:3
Author:Jeppe Donslund
Date:2015-02-19 09:22:03
 

  1. Get data from first cell in each sheet   Reply   Report abuse  
Picture of Jeppe Donslund Jeppe Donslund - 2015-02-19 09:22:03
I need the data from the first cell in the first row in every sheet of my xlsx file.

for($i=1;$i<count($sheets)+1;$i++) {
print $xlsx->sheet($i)->rows(1)
}

That doesn't seem to work.

  2. Re: Get data from first cell in each sheet   Reply   Report abuse  
Picture of Sergey Shuchkin Sergey Shuchkin - 2015-02-19 10:59:59 - In reply to message 1 from Jeppe Donslund
print $xlsx->rows($i)

  3. Re: Get data from first cell in each sheet   Reply   Report abuse  
Picture of Jeppe Donslund Jeppe Donslund - 2015-03-04 10:45:00 - In reply to message 2 from Sergey Shuchkin
Thanks