How to Write Data to an Excel File Using C++

A detailed guide on writing data to an Excel file using C++ and the openxlsx library. This article provides the necessary steps to create and write data to an Excel file easily.

In this article, we will learn how to write data to an Excel file using C++. We will use the openxlsx library, which makes it easy to manipulate Excel files without requiring Microsoft Office installation.

C++ code

#include <iostream>
#include <openxlsx.hpp>

int main() {
    // Create a new workbook
    openxlsx::Workbook workbook;

    // Create a new worksheet
    openxlsx::Worksheet* sheet = workbook.addWorksheet("Sheet1");

    // Write headers to cells
    sheet->write("A1", "Name");
    sheet->write("B1", "Age");
    sheet->write("C1", "Address");

    // Write data to cells
    sheet->write("A2", "Nguyen Van A");
    sheet->write("B2", 30);
    sheet->write("C2", "Hanoi");

    sheet->write("A3", "Tran Thi B");
    sheet->write("B3", 25);
    sheet->write("C3", "Da Nang");

    // Save the Excel file
    workbook.saveToFile("data.xlsx");

    std::cout << "Successfully wrote content to the Excel file!" << std::endl;
    return 0;
}

Detailed explanation

  1. Library openxlsx.hpp: This library provides the necessary functions to work with Excel files.
  2. Workbook: Creates a new workbook to hold data.
  3. addWorksheet("Sheet1"): Creates a new worksheet named "Sheet1".
  4. write(...): Writes data to cells in the worksheet. You can write both strings and numbers.
  5. saveToFile("data.xlsx"): Saves the workbook as an Excel file named "data.xlsx".
  6. std::cout: Prints a message to the console.

System Requirements:

  • C++11 or later
  • openxlsx library

How to install the libraries needed to run the C++ code above:

  1. Download the openxlsx library from Github.
  2. Add the library path to your project.
  3. Compile the source code along with the installed library.

Tips:

  • Make sure you have installed the correct version of the openxlsx library to avoid compilation errors.
  • Validate input data before writing it to the Excel file to ensure accuracy.
Tags: Excel, C++


Related

How to pass Authentication Header Token when POSTing data to API using Node.js

A step-by-step guide on how to pass an Authentication Token in the header while POSTing data to an API using Node.js. The article demonstrates how to use the `axios` or `http` package to perform authenticated HTTP requests.
How to POST data to an API using C++ with libcurl

A guide on how to send data to an API using the POST method in C++ with the libcurl library. This article will help you understand how to configure and send HTTP POST requests to a RESTful API.
Example of Singleton Pattern in C++

This article introduces the Singleton Pattern in C++, including its implementation and application in object management. The Singleton Pattern ensures that a class has only one instance and provides a global access point to it.
Multithreading in C++

A detailed guide on handling multithreading in C++ using the `thread` library. This article helps you understand how to use multithreading to improve concurrent processing efficiency.
Example of Object-Oriented Programming (OOP) in C++

This article provides an illustrative example of object-oriented programming (OOP) in C++, covering concepts such as classes, objects, inheritance, and polymorphism.
Reading Excel File Content in C++

A detailed guide on reading the content of an Excel file in C++ using the `xlnt` library. This article will help you understand how to retrieve data from an Excel file and process it in your C++ program.
Updating Data in MySQL Using C++

A guide on how to update data in MySQL using C++ with Prepared Statements, ensuring security and efficiency when interacting with the database. This article provides a clear illustrative example.
How to open Notepad using C++

A guide on how to open the Notepad application using C++ on Windows by utilizing the `system()` function. This is a simple method to invoke system applications from a C++ program.
Create a Simple Chat Application Using Socket.IO in C++

A guide on how to create a simple chat application using C++ with Socket.IO, helping you to understand more about network programming and real-time communication.
Create a watermark for images using C++

A guide on how to create a watermark for images in C++ using the OpenCV library. This article helps you understand how to add text or images onto a photo to create a watermark.

main.add_cart_success