How to Set Background cell color in PHPExcel

You can set the background color of a cell in PHPExcel by using the setBackground() method.

Example:

$objPHPExcel->getActiveSheet()->getStyle(‘A1’)->getFill()->setFillType(PHPExcel_Style_Fill::FILL_SOLID)->getStartColor()->setARGB(‘FF0000’);

This will set the background color of cell A1 to red.
[ad_1]

With PHPExcel, you can create Excel files programmatically, manipulate existing files, and add various formatting options to make your data more readable and visually appealing. One of the formatting options that PHPExcel offers is setting the background color of cells. In this tutorial, you will learn how to set the background color of cells in PHPExcel.

How to Set Background cell color in PHPExcel

By following these steps, you will create visually appealing spreadsheets with custom cell colors to highlight important data:

  • Step 1: Create a new PHPExcel object
  • Step 2: Create a worksheet
  • Step 3: Set the background color of a cell
  • Step 4: Save the worksheet

Step 1: Create a new PHPExcel object

Before you can set the background color of cells, you need to create a new PHPExcel object. To do this, you can use the following code:

require_once 'path/to/PHPExcel.php';

$objPHPExcel = new PHPExcel();

This code includes the PHPExcel library and creates a new PHPExcel object.

Step 2: Create a worksheet

Next, you need to create a worksheet within the PHPExcel object. To create a new worksheet, you can use the following code:

$worksheet = $objPHPExcel->getActiveSheet();

This code creates a new worksheet and assigns it to the $worksheet variable.

Step 3: Set the background color of a cell

Now that you have a worksheet, you can set the background color of a cell. To set the background color of a cell, you need to create a new PHPExcel_Style_Fill object and set its properties. Here’s an example:

$fill = new PHPExcel_Style_Fill();
$fill->setFillType(PHPExcel_Style_Fill::FILL_SOLID)
     ->getStartColor()->setRGB('FF0000');

This code creates a new PHPExcel_Style_Fill object, sets its fill type to FILL_SOLID (which means a solid color fill), and sets its start color to red.

Once you have created the $fill object, you can apply it to a cell by setting the cell’s getStyle() property and then setting the getFill() property of the resulting PHPExcel_Style object to $fill. Here’s an example:

$cell = 'A1';
$worksheet->setCellValue($cell, 'Hello World!');
$worksheet->getStyle($cell)->getFill()->applyFromArray(array('fill' => $fill));

This code sets the value of cell A1 to “Hello World!” and applies the background color fill to the cell.

Step 4: Save the worksheet

Finally, you need to save the worksheet to a file. To do this, you can use the following code:

$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->save('example.xlsx');

This code creates a new PHPExcel_IOFactory object, sets its file type to Excel2007, and saves the PHPExcel object to a file named “example.xlsx”.

Conclusion

In this article, we have shown you how to set the background color of cells in PHPExcel. By following these steps, you can create visually appealing spreadsheets with custom cell colors to highlight important data. With PHPExcel’s powerful functionality, you can create complex spreadsheets with ease and manipulate them programmatically to suit your needs.

Recommended Tutorials

[ad_2]

Jaspreet Singh Ghuman

Jaspreet Singh Ghuman

Jassweb.com/

Passionate Professional Blogger, Freelancer, WordPress Enthusiast, Digital Marketer, Web Developer, Server Operator, Networking Expert. Empowering online presence with diverse skills.

jassweb logo

Jassweb always keeps its services up-to-date with the latest trends in the market, providing its customers all over the world with high-end and easily extensible internet, intranet, and extranet products.

GSTIN is 03EGRPS4248R1ZD.

Contact
Jassweb, Rai Chak, Punjab, India. 143518
Item added to cart.
0 items - 0.00