Copyright 2026 Shko Online LLC sales@shko.online
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
This Power Platform ToolBox tool allows you to export Dataverse data using a system or personal excel template from the selected environment. It will properly use pagination and not timeout during data export.
- ✅ React 18 with TypeScript
- ✅ Vite for fast development and building
- ✅ Hot Module Replacement (HMR) for development
dataverse-excel-reporter-pptb/
├── src/
│ ├── App.tsx # Main component
│ ├── main.tsx # Entry point
│ └── styles.css # Styling
├── dist/ # Build output
├── index.html
├── package.json
├── tsconfig.json
└── vite.config.ts
Install dependencies:
npm installStart development server with HMR:
npm run devBuild the tool:
npm run buildPreview production build:
npm run preview- Build the tool using
npm run build - Install the tool in ToolBox
- Load and use the tool from the ToolBox interface
APACHE-2