This plugin allows users to generate and download excel files directly from their strapi application, streamlining data management and analysis. With intuitive configuration options, users can define the data to be included in the excel file.The plugin is designed to be user-friendly, offering a seamless experience for both developers and end-users.
This plugin allows users to extract data easily from strapi backend into .xlsx format
npm i strapi-plugin-excel-export-2024
or yarn add strapi-plugin-excel-export-2024
1module.exports = {
2 config: {
3 "api::contact-form.contact-form": {
4 columns: [
5 "first_name",
6 "last_name",
7 "phone_no",
8 "business_email",
9 "job_title",
10 "company_name",
11 "company_website",
12 "city",
13 "message",
14 ],
15 relation: {
16 solution: {
17 column: ["title"],
18 },
19 },
20 locale: "false",
21 },
22 },
23};
Relational fields need to be specified in the relation. For example consider the relation as solution and the column wanted from that relation is title.
Even if there is no relation needed please keep the relation field empty.
relation: {},
Note : Currently one level of relation is supported.
The locale field is for i18 translation plugin. If there is translation for the table you have to make it true.
You can't extract data from dynamic zone or nested components.
npm install strapi-plugin-excel-export-2024
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.