Merge branch 'master' into Examples-Fixed-Header

This commit is contained in:
Mark Baker
2023-04-06 03:31:00 +02:00
committed by GitHub
5 changed files with 155 additions and 1 deletions
@@ -0,0 +1,91 @@
<?php
use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Worksheet\Table;
require __DIR__ . '/../Header.php';
// Create new Spreadsheet object
$helper->log('Create new Spreadsheet object');
$spreadsheet = new Spreadsheet();
// Set document properties
$helper->log('Set document properties');
$spreadsheet->getProperties()->setCreator('aswinkumar863')
->setLastModifiedBy('aswinkumar863')
->setTitle('PhpSpreadsheet Table Test Document')
->setSubject('PhpSpreadsheet Table Test Document')
->setDescription('Test document for PhpSpreadsheet, generated using PHP classes.')
->setKeywords('office PhpSpreadsheet php')
->setCategory('Table');
// Create the worksheet
$helper->log('Add data');
$spreadsheet->setActiveSheetIndex(0);
$columnFormula = '=SUM(Sales_Data[[#This Row],[Q1]:[Q4]])';
$dataArray = [
['Year', 'Country', 'Q1', 'Q2', 'Q3', 'Q4', 'Sales'],
[2010, 'Belgium', 380, 390, 420, 460, $columnFormula],
[2010, 'France', 510, 490, 460, 590, $columnFormula],
[2010, 'Germany', 720, 680, 640, 660, $columnFormula],
[2010, 'Italy', 440, 410, 420, 450, $columnFormula],
[2010, 'Spain', 510, 490, 470, 420, $columnFormula],
[2010, 'UK', 690, 610, 620, 600, $columnFormula],
[2010, 'United States', 790, 730, 860, 850, $columnFormula],
[2011, 'Belgium', 400, 350, 450, 500, $columnFormula],
[2011, 'France', 620, 650, 415, 570, $columnFormula],
[2011, 'Germany', 680, 620, 710, 690, $columnFormula],
[2011, 'Italy', 430, 370, 350, 335, $columnFormula],
[2011, 'Spain', 460, 390, 430, 415, $columnFormula],
[2011, 'UK', 720, 650, 580, 510, $columnFormula],
[2011, 'United States', 800, 700, 900, 950, $columnFormula],
];
$spreadsheet->getActiveSheet()->fromArray($dataArray, null, 'A1');
// Create Table
$helper->log('Create Table');
$table = new Table('A1:G16', 'Sales_Data'); // +1 row for totalsRow
$table->setShowTotalsRow(true);
$table->setRange('A1:G16'); // +1 row for totalsRow
// Set Column Formula
$table->getColumn('G')->setColumnFormula($columnFormula);
$helper->log('Add Totals Row');
// Table column label not implemented yet,
$table->getColumn('A')->setTotalsRowLabel('Total');
// So set the label directly to the cell
$spreadsheet->getActiveSheet()->getCell('A16')->setValue('Total');
// Table column function not implemented yet,
$table->getColumn('G')->setTotalsRowFunction('sum');
// So set the formula directly to the cell
$spreadsheet->getActiveSheet()->getCell('G16')->setValue('=SUBTOTAL(109,Sales_Data[Sales])');
// Table column function not implemented yet,
$table->getColumn('C')->setTotalsRowFunction('sum');
$table->getColumn('D')->setTotalsRowFunction('sum');
$table->getColumn('E')->setTotalsRowFunction('sum');
$table->getColumn('F')->setTotalsRowFunction('sum');
// So set the formulae directly to the cells
$spreadsheet->getActiveSheet()->getCell('C16')->setValue('=SUBTOTAL(109,Sales_Data[Q1])');
$spreadsheet->getActiveSheet()->getCell('D16')->setValue('=SUBTOTAL(109,Sales_Data[Q2])');
$spreadsheet->getActiveSheet()->getCell('E16')->setValue('=SUBTOTAL(109,Sales_Data[Q3])');
$spreadsheet->getActiveSheet()->getCell('F16')->setValue('=SUBTOTAL(109,Sales_Data[Q4])');
// Add Table to Worksheet
$helper->log('Add Table to Worksheet');
$spreadsheet->getActiveSheet()->addTable($table);
$helper->displayGrid($spreadsheet->getActiveSheet()->toArray(null, false, true, true));
$helper->log('Calculate Structured References');
$helper->displayGrid($spreadsheet->getActiveSheet()->toArray(null, true, true, true));
// Save
$helper->write($spreadsheet, __FILE__, ['Xlsx']);
+4
View File
@@ -945,6 +945,10 @@ class Xlsx extends BaseReader
// no style index means 0, it seems
$cell->setXfIndex(isset($styles[(int) ($cAttr['s'])]) ?
(int) ($cAttr['s']) : 0);
// issue 3495
if ($cell->getDataType() === DataType::TYPE_FORMULA) {
$cell->getStyle()->setQuotePrefix(false);
}
}
}
++$rowIndex;
@@ -18,7 +18,8 @@ class Issue3464Test extends \PHPUnit\Framework\TestCase
$objReader = IOFactory::createReader($inputFileType);
$objReader->setReadEmptyCells(false);
$sheet = $objReader->load(self::$testbook)->getActiveSheet();
$spreadsheet = $objReader->load(self::$testbook);
$sheet = $spreadsheet->getActiveSheet();
$rickText = $sheet->getCell([1, 1])->getValue();
self::assertInstanceOf(RichText::class, $rickText);
@@ -34,5 +35,6 @@ class Issue3464Test extends \PHPUnit\Framework\TestCase
$font = $elements[1]->getFont();
self::assertNotNull($font);
self::assertEquals('ff2600', $font->getColor()->getRGB());
$spreadsheet->disconnectWorksheets();
}
}
@@ -0,0 +1,57 @@
<?php
namespace PhpOffice\PhpSpreadsheetTests\Reader\Xlsx;
use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
class Issue3495Test extends \PHPUnit\Framework\TestCase
{
/**
* @var string
*/
private static $testbook = 'tests/data/Reader/XLSX/issue.3495d.xlsx';
public function testPreliminaries(): void
{
$file = 'zip://';
$file .= self::$testbook;
$file2 = $file;
$file .= '#xl/styles.xml';
$file2 .= '#xl/worksheets/sheet1.xml';
$data = file_get_contents($file);
if ($data === false) {
self::fail('Unable to read file');
} else {
// default style plus one other style
self::assertStringContainsString(
'<cellXfs count="2">'
. '<xf numFmtId="0" fontId="0" fillId="0" borderId="0" xfId="0"/>'
. '<xf numFmtId="0" fontId="0" fillId="0" borderId="0" xfId="0" quotePrefix="1"/>',
$data
);
}
$data = file_get_contents($file2);
if ($data === false) {
self::fail('Unable to read file');
} else {
// cells B1, C1, D1 all nominally use quotePrefix s="1"
self::assertStringContainsString('<c r="B1" s="1">', $data);
self::assertStringContainsString('<c r="C1" s="1" t="s">', $data);
self::assertStringContainsString('<c r="D1" s="1" t="s">', $data);
}
}
public function testFormulaDespiteQuotePrefix(): void
{
$reader = new Xlsx();
$spreadsheet = $reader->load(self::$testbook);
$sheet = $spreadsheet->getActiveSheet();
self::assertSame('=2+3', $sheet->getCell('B1')->getValue());
self::assertSame('=1+2', $sheet->getCell('C1')->getValue());
self::assertSame('3', $sheet->getCell('D1')->getValue());
self::assertSame(5, $sheet->getCell('B1')->getCalculatedValue());
self::assertSame('=1+2', $sheet->getCell('C1')->getCalculatedValue());
self::assertSame('3', $sheet->getCell('D1')->getCalculatedValue());
$spreadsheet->disconnectWorksheets();
}
}
Binary file not shown.