Ausnahme gefangen: SSL certificate problem: certificate is not yet valid 📌 A step-by-step guide on Excel Add-in development using React.js

🏠 Team IT Security News

TSecurity.de ist eine Online-Plattform, die sich auf die Bereitstellung von Informationen,alle 15 Minuten neuste Nachrichten, Bildungsressourcen und Dienstleistungen rund um das Thema IT-Sicherheit spezialisiert hat.
Ob es sich um aktuelle Nachrichten, Fachartikel, Blogbeiträge, Webinare, Tutorials, oder Tipps & Tricks handelt, TSecurity.de bietet seinen Nutzern einen umfassenden Überblick über die wichtigsten Aspekte der IT-Sicherheit in einer sich ständig verändernden digitalen Welt.

16.12.2023 - TIP: Wer den Cookie Consent Banner akzeptiert, kann z.B. von Englisch nach Deutsch übersetzen, erst Englisch auswählen dann wieder Deutsch!

Google Android Playstore Download Button für Team IT Security



📚 A step-by-step guide on Excel Add-in development using React.js


💡 Newskategorie: Programmierung
🔗 Quelle: dev.to

What is an Excel Add-in?

MS Excel Add-in is a kind of program or a utility that lets you perform fundamental processes more quickly. It does this by integrating new features into the excel application that boosts its basic capabilities on various platforms like Windows, Mac & Web.

The Excel Add-in, as part of the Office platform, allows you to modify and speed up your business processes. Office Add-ins are well-known for their centralized deployment, cross-platform compatibility, and AppSource distribution. It enables developers to leverage web technologies including HTML, CSS, and JavaScript.

More importantly, it provides the framework and the JavaScript library Office.js for constructing Excel Add-ins. In this tutorial, we will walk through the basic yet effective process of creating the Excel Addin using ReactJS.

Prerequisites for setting up your development environment

Before you start creating Excel Add-ins, make sure you have these prerequisites installed on your PC.

  • NPM
  • Node.js
  • Visual Studio
  • A Microsoft 365 account with a subscription

Looking for the best Excel Add-in development company ? Connect us now.

How to build Excel Add-in using React

To begin, configure and install the Yeoman and Yeoman generator for Office 365 Add-in development.

npm install -g yo generator-office

Now run the following yo command to create an Add-in

yo office

After running the above command, select the Project type as a React framework. Take a look at the reference image below.

Image description

After selecting the project, choose TypeScript as your script type.

Image description

Now, name your Excel Add-in project as shown below. You can give whatever name you like but giving a project-relevant name would be an ideal move.

Image description

Read More: React Element vs Component: A deep dive into differences

Because it is critical to provide support for the office application, choose Excel as the Office client.

Image description

Congratulations!! Your first Excel Add-in is created successfully.

How to run Excel Add-in?

Add-ins are not instantly accessible in Excel by default. We must activate them before we may use them. Let's have a look at how to use a command prompt to execute Add-ins in MS Excel.

Use the following command and open the project folder on the command prompt.

cd Excel_Tutorial

Now start the dev-server as shown below.

npm run dev-server

To test Add-in in your Excel, run the following command in the project’s root directory.

npm start

When you complete running this command, you should see a task pane added to Excel that operates like an Excel Add in.

Image description

How to create a Table using ReactJS?

Businesses commonly use tables to present their business data whether it be price, comparison, financial comparison, etc. React.js makes it simple and quick for organizations to manage large amounts of data. Let’s understand the process of creating a table using React.js.

To begin,

Planning to hire dedicated ReactJS developers? Contact us now.

  1. Open the project in VS code
  2. Open the file which is located in src\taskpane\components\app.tsx
  3. Remove the componentDidMount() method and click() method from app.tsx
  4. Remove all tags which are inside the return method and add one button inside the return method to generate a table

5. App.tsx

import * as React from "react";
import Progress from "./Progress";

export interface AppProps {
  title: string;
  isOfficeInitialized: boolean;
}

export default class App extends React.Component<appprops> {
  constructor(props, context) {
    super(props, context);
    this.state = {
      listItems: [],
    };
  }

  render() {
    const { title, isOfficeInitialized } = this.props;

    if (!isOfficeInitialized) {
      return (

      );
    }

    return (
        <>
         <button>Generate Table</button>

    );
  }
}

</appprops> 

Create one event handler function for the button which will contain the logic for creating a new table.


<appprops><button onclick="{this.handleCreateTable}">Generate Table</button>

</appprops>

Excel.js business logic will be added to the handleCreateTable function that is passed to Excel.run method.
The context.sync method sends all pending commands which are in queue to Excel for execution.

The Excel.run method is followed by the catch block.


handleCreateTable = async () => {
    await Excel.run(async (context) => {

      // logic for create table

      await context.sync();
    }).catch((err) => {
        console.log("Error: " + err);
      });
  }

In Excel.run method, first we have to get the current worksheet, and to do so, use the following method.

const currentWorksheet = context.workbook.worksheets.getActiveWorksheet();

Once we get the worksheet, we’ll create a table. Use the following method to create a table.

const salaryTable = currentWorksheet.tables.add("A1:D1", true);

The table is generated by using the add() function on the table collection of the current worksheet. The method accepts the first parameter as a range of the top row of the table.

We can also give a name to our table as shown below.

  salaryTable.name = "SalaryTable";

Now, add a header row using the code shown below.

 salaryTable.getHeaderRowRange().values = 
[["Name", "Occupation", "Age","Salary"]];

The table's rows are then inserted using the add() function of the table's row collection. We may add several rows in a single request by sending an array of cell values within the parent array.

 salaryTable.rows.add(null /*add at the end*/, [
  ["Poojan", "Software Developer","39", "50,000"],
        ["Meera", "Fashion Designer","23", "30,000"],
        ["Smit", "Teacher", "25","35,000"],
        ["Kashyap", "Scientist", "29","70,000"],
        ["Neha", "Teacher","34", "15,000"],
        ["Jay", "DevOps Developer","31", "65,000"]
      ]);

We can change the format of salary to decimal. For that, we have to pass the column zero-based index to the getItemAt() method.

salaryTable.columns.getItemAt(3).getRange().numberFormat = [['##0.00']];

When we use the table to represent business data, it is important to ensure content is displayed clearly. With the fine use of the autofitColumns() and autofitRows() methods, we can perfectly fit the content into cells.

salaryTable.getRange().format.autofitColumns();
salaryTable.getRange().format.autofitRows();

Read More: Flutter vs. React Native: Choose the Best for your App in 2022

Let’s take a look at how the entire function appears to be.


handleCreateTable = async () => {
    await Excel.run(async (context) => {

      const currentWorksheet=context.workbook.worksheets.getActiveWorksheet();
      const salaryTable = currentWorksheet.tables.add("A1:D1", true );
      salaryTable.name = "SalaryTable";

      salaryTable.getHeaderRowRange().values =
        [["Name", "Occupation", "Age", "Salary"]];

      salaryTable.rows.add(null /*add at the end*/, [
        ["Poojan", "Software Developer", "39", "50,000"],
        ["Meera", "Fashion Designer", "23", "30,000"],
        ["Smit", "Teacher", "25", "35,000"],
        ["Kashyap", "Scientist", "29", "70,000"],
        ["Neha", "Teacher", "34", "15,000"],
        ["Jay", "DevOps Developer", "31", "65,000"]
      ]);

      salaryTable.columns.getItemAt(3).getRange().numberFormat = [['##0.00']];
      salaryTable.getRange().format.autofitColumns();
      salaryTable.getRange().format.autofitRows();

      await context.sync();

    }).catch((err) => {
      console.log("Error: " + err);
    });
  }

Now, use the npm start command to run the code. That's all there is to it; now, when the user hits the generate table button, he'll see the following result.

Output:

How to Filter data in a table?

Filtering data is critical because organizations utilize it to exclude undesired results for analysis. Let's see how data in a table may be filtered for better analysis.

<button>Filter Data</button>

<button onclick="{this.filterData}">Filter Data</button>

  1. Open the file which is located in src\taskpane\components\app.tsx
  2. Add a new button for filter data below Generate Table button.
  3. Create one event handler function for the button that will contain the filter data logic. 4. filterData function:

filterData = async () => {
    await Excel.run(async (context) => {
      await context.sync();
    }).catch((err) => {
      console.log("Error: " + err);
    });
  }

Then we will get the current worksheet and table.


const currentWorksheet = context.workbook.worksheets.getActiveWorksheet();
const salaryTable = currentWorksheet.tables.getItem('salaryTable');


To begin filtering data, we must first access the column from which we will be filtering data.

const occupationFilter = salaryTable.columns.getItem('Occupation').filter;

Here, Occupation is the column name on which we want to apply the filter.

Next, pass the values as a filter query.

occupationFilter.applyValuesFilter(['Software Developer', 'Teacher']);

Meanwhile, take a look at how the whole function looks like.

filterData = async () => {
    await Excel.run(async (context) => {

      const currentWorksheet=context.workbook.worksheets.getActiveWorksheet();
      const salaryTable = currentWorksheet.tables.getItem('salaryTable');
      const occupationFilter=salaryTable.columns.getItem('Occupation').filter;
      occupationFilter.applyValuesFilter(['Software Developer', 'Teacher']);

      await context.sync();
    }).catch((err) => {
      console.log("Error: " + err);
    });
  }

Finally, run the code using the npm start command. Now when the user clicks on the filter data button, he’ll see the following result.

Output:

Image description

How to sort data in the table?

Data sorting is also important since it helps to obtain well-organized data in a sequential manner. Let’s understand in simple ways, how data can be sorted in a table.

To start with,

<button>Sort Data</button>

Searching for the best Microsoft 365 development solutions? Your search ends here.

<button onclick="{this.sortData}">Sort Data</button>

  1. Open the project in VS code
  2. Open the file from the path: src\taskpane\components\app.tsx
  3. Add a new button for sorting data below the filter data button.
  4. Create one event handler function for the button which will contain the logic for sorting the data. 5. sortData function:
sortData=async()=>{
   await Excel.run(async (context) => {
    await context.sync();
    }).catch((err) => {
      console.log("Error: " + err);
    });
  }   

Let's start by getting the current worksheet and table.

const currentWorksheet = context.workbook.worksheets.getActiveWorksheet();
const salaryTable = currentWorksheet.tables.getItem('salaryTable');

In the function, we will build a sort field object and supply two parameters to it: the key and the type of sorting (ascending or descending).

Note:
The key property is the zero-based index of the column, and it is used for sorting. All the rows of data are sorted according to key.

const sortFields = [
        {
          key: 3,
          ascending: false,
        }
      ];

Subsequently, we use the sort and apply method on the table and pass the sortFields object.

salaryTable.sort.apply(sortFields);

Read More: Comparative Analysis of Blazor, Angular, React, Vue and Node for Web development

Here is what the whole function might look like. <<>

sortData = async () => {
    await Excel.run(async (context) => {

      const currentWorksheet=context.workbook.worksheets.getActiveWorksheet();
      const salaryTable = currentWorksheet.tables.getItem('salaryTable');

      const sortFields = [
        {
          key: 3,
          ascending: false,
        }
      ];

      salaryTable.sort.apply(sortFields);

      await context.sync();
    }).catch((err) => {
      console.log("Error: " + err);
    });
  }


Run the code using the npm start command
Finally, run the code with the npm start command. The user will see the following result every time he clicks on the sort data button.

output

Image description

Conclusion

Office Add-ins benefit businesses with faster operations and processes. In Office Add-ins, you can use familiar technologies like HTML, CSS & JavaScript to create Outlook, Excel, Word, and PowerPoint Add-ins. In this blog, we learned how to create an Excel Addin with React library from scratch and how to create tables, filter & sort data in Excel using Excel Add-in.

...



📌 Add Tweets to Your React App using react-tweet


📈 30.18 Punkte

📌 Beginner Guide on Unit Testing in React using React Testing Library and Vitest


📈 29.31 Punkte

📌 Elevating Your React A Comprehensive Guide to Using React-Select


📈 29.31 Punkte

📌 Excel-Funktionen und Excel Formeln erklärt: So rechnen Sie mit Excel-Funktionen


📈 28.5 Punkte

📌 This Week In React #127: Nextra, React-Query, React Documentary, Storybook, Remix, Tamagui, Solito, TC39, Rome...


📈 26.48 Punkte

📌 This Week In React #131: useReducer, Controlled Inputs, Async React, DevTools, React-Query, Storybook, Remix, RN , Expo...


📈 26.48 Punkte

📌 This Week In React #139: React.dev, Remix, Server Components, Error Boundary, Wakuwork, React-Native, Bottom Sheet...


📈 26.48 Punkte

📌 This Week In React #146: Concurrency, Server Components, Next.js, React-Query, Remix, Expo Router, Skia, React-Native...


📈 26.48 Punkte

📌 Die besten Excel Add-Ins: Diese Tools erleichtern das Arbeiten in Excel


📈 26.41 Punkte

📌 Microsoft Excel's fun-filled, EVE Online add-in takes center stage at the Excel World Championships in Las Vegas


📈 26.41 Punkte

📌 Elevating React Development: Unleashing the Power of ChatGPT for React Developers


📈 25.17 Punkte

📌 Accelerate React App Development with create-react-auth-nav: A Productivity Powerhouse


📈 25.17 Punkte

📌 Add-in error, This add-in could not be started in Excel


📈 24.32 Punkte

📌 The State of React Native Tooling (React Native CLI - The Ultimate Guide)


📈 24.2 Punkte

📌 Mastering React Router: The Ultimate Guide to Navigation and Routing in React Apps!


📈 24.2 Punkte

📌 EXCEL vs. GDPR software – can you handle GDPR using Excel?


📈 24.11 Punkte

📌 Using Conditional Formatting in Excel to make data pop #shorts #microsoft #excel


📈 24.11 Punkte

📌 App Development Community Standup: React Native for Windows update | App Development Community Standup


📈 23.85 Punkte

📌 Mastering useState: A Guide to Avoiding Common Pitfalls in React Development


📈 22.88 Punkte

📌 Supercharging your Web Development with React: A Comprehensive Guide.


📈 22.88 Punkte

📌 React Native Networking – How To Perform API Requests In React Native using the FetchAPI


📈 22.76 Punkte

📌 How To Create Custom Alerts in React Using React-Notifications-Component


📈 22.76 Punkte

📌 How To Make Login Page Like Twitter Using React Js | Sign In Page Design With React Js


📈 22.76 Punkte

📌 Virtual Scrolling in React: Implementation from scratch and using react-window


📈 22.76 Punkte

📌 Build complex PDFs using React: react-print-pdf


📈 22.76 Punkte

📌 Build complex PDFs using React: react-print-pdf


📈 22.76 Punkte

📌 React 19, handling forms using useOptimistic and useFormStatus along with React Hook Form and Zod … practical example


📈 22.76 Punkte

📌 How to Implement Face Detection in React Native Using React Native Vision Camera


📈 22.76 Punkte

📌 Optimize React Component Performance with Memoization Using React.memo()


📈 22.76 Punkte

📌 Using the React Profiler to Increase React Application Performance


📈 22.76 Punkte

📌 Understanding React Routing Using React Router


📈 22.76 Punkte

📌 Benefits of Using React Js For Custom Web Development


📈 21.45 Punkte

📌 How to add 3D Models to Website using React Three Fiber


📈 21.35 Punkte

📌 How to add 3D Models to Website using React Three Fiber


📈 21.35 Punkte











matomo