> For the complete documentation index, see [llms.txt](https://docs.gpmautomate.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gpmautomate.com/automate-en/action-guides/file-and-folder/create-empty-excel.md).

# Create empty excel

Creating an empty excel is the action of initializing a completely new Excel file (format `.xlsx`) that is empty at a specified path on your computer.

This action is often placed at the beginning of a script to prepare a clean storage file before data scraping (Data Crawler) or logging actions start pushing information in.

#### Configuration parameters:

* File Path: The absolute path including the file name and the `.xlsx` extension where you want to create the file (For example: `D:\GPM\data_crawler.xlsx`).

#### Practical example: Initialize the data export file before scraping posts

Suppose you are writing a script to automatically browse groups and collect (scrape) post links and interactions for market research. Before the data scraping loop starts running, you need to have an empty Excel file ready to store the results.

* Configuration method: In the first step of the script, you call the Create empty excel action.
  * File Path: Enter the path `D:\GPM\ketqua_facebook.xlsx`.
* Result:
  * If there is no file `ketqua_facebook.xlsx` in the `D:\GPM\` directory, the system will immediately create an empty Excel file.
  * If the file already exists, the system will delete the old file and create a completely new empty file to ensure that the data from the previous run does not mix with this run.

After this step, you can confidently use actions like Write excel file or Append excel file to write the scraped data into the file.

<figure><img src="/files/3f5yWNLY8eShFEo3iOys" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.gpmautomate.com/automate-en/action-guides/file-and-folder/create-empty-excel.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
