Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHPExcel lock particular cell

Tags:

php

phpexcel

In phpexcel i was able to lock cell by

$objPHPExcel->getActiveSheet()->protectCells('A1:D1', 'php');
$objPHPExcel->getActiveSheet()->getProtection()->setSheet(true);

If i double click on any Cell between A1 to D1 it will ask for password as it should.
But if i double click on any other cell (eg) A2 it says

"The cell or chart that you are trying to change is protected and therefore 
read-only".

Its locking whole worksheet, Is it possible to lock only particular cell and leave other cells editable?

like image 550
sravis Avatar asked Jun 11 '13 14:06

sravis


3 Answers

Finally, i found the right way to do it..

$objPHPExcel = new PHPExcel;
$objSheet = $objPHPExcel->getActiveSheet();

//PROTECT THE CELL RANGE

$objSheet->protectCells('A1:B1', 'PHP');

// UNPROTECT THE CELL RANGE

$objSheet->getStyle('A2:B2')->getProtection()
->setLocked(PHPExcel_Style_Protection::PROTECTION_UNPROTECTED);

// PROTECT THE WORKSHEET SHEET

$objSheet->getProtection()->setSheet(true);

This is working perfectly!

like image 64
sravis Avatar answered Nov 18 '22 03:11

sravis


sravis got me on the right track, but still one flaw remains: if you do it that way, you can still just remove the locking of the sheet using Excel without entering a password (just as it tells you when you click on a cell that's not locked with a password).

To lock an Excel-sheet with a password and unprotect a couple of cells, you need to protect the sheet (instead of just a couple of cells) and then unprotect some cells:

$sheet->getProtection()->setPassword('password hare');
$sheet->getProtection()->setSheet(true);
$sheet->getStyle('A1:B2')->getProtection()->setLocked(PHPExcel_Style_Protection::PROTECTION_UNPROTECTED);

That way the user will have to enter the password when trying to unprotect the sheet using Excel.

like image 5
Select0r Avatar answered Nov 18 '22 05:11

Select0r


If you are using PhpSpreadsheet which is successor of PHPExcel by now,

$sheet->getStyle('A1:B2')->getProtection()->setLocked(PHPExcel_Style_Protection::PROTECTION_UNPROTECTED)

will give class not found error.

Solution:

use PhpOffice\PhpSpreadsheet\Style\Protection;

$sheet->getProtection()->setSheet(true);

$sheet->getStyle('A1:A10')->getProtection()
->setLocked(Protection::PROTECTION_UNPROTECTED);

This will work.

like image 3
manita pote Avatar answered Nov 18 '22 03:11

manita pote