python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
is there a way to put placeholders in excel files using phpspreadsheet?
is there any way to get placeholders in my excel file using phpspreadsheet? all I see I can do is using a specific cell to put my data into it
eg. setCellValue('A1','John')
I want to insert data into ...
CTD
Votes: 0
Answers: 1
php plaintext output compatibility with google sheets
I made a script in PHP to fit into a template I made in google sheets. I made the output text for convenience:
header("content-type: text/plain");
I didn't need html when I'm going for the ...
partys over
Votes: 0
Answers: 1
PHPSpreadsheet setAutoSize function not working as expected
I am using PHPSpreadsheet and I'm doing the following to autosize the relevant columns:
foreach (range('A', 'K') as $col) {
$productsSheet->getColumnDimension($col)->setAutoSize(true);
}
Th...
Matthew Knill
Votes: 0
Answers: 0