DevExtreme v25.2 is now available.

Explore our newest features/capabilities and share your thoughts with us.

Your search did not match any results.

React Data Grid - Overview

DevExtreme React DataGrid is a feature-rich grid control. Its main features include robust data layer, fast data processing, client-side data validation, and many more. Learn more about DevExtreme React components.

To get started with the DevExtreme DataGrid component, refer to the following tutorial for step-by-step instructions: Getting Started with DataGrid.

For a complete overview of DataGrid options, check the DataGrid API Reference.

DevExtreme Accessibility Compliance
DevExtreme component libraries meet a variety of WCAG and Section 508 compliance standards. To assess this demo's accessibility level, click the Run AXE® Validation button to launch the AXE® web accessibility evaluation tool.
All trademarks or registered trademarks are property of their respective owners. AXE® Terms of Use
The overall accessibility level of your application depends on the DataGrid features used.
Backend API
import React, { useCallback, useState } from 'react'; import DataGrid, { Column, type DataGridTypes, Grouping, GroupPanel, Pager, Paging, SearchPanel, } from 'devextreme-react/data-grid'; import DiscountCell from './DiscountCell.tsx'; import { sales } from './data.ts'; const pageSizes = [10, 25, 50, 100]; const App = () => { const [collapsed, setCollapsed] = useState(true); const onContentReady = useCallback((e: DataGridTypes.ContentReadyEvent) => { if (collapsed) { e.component.expandRow(['EnviroCare']); setCollapsed(false); } }, [collapsed]); return ( <DataGrid dataSource={sales} keyExpr="Id" allowColumnReordering={true} rowAlternationEnabled={true} showBorders={true} width="100%" onContentReady={onContentReady} > <GroupPanel visible={true} /> <SearchPanel visible={true} highlightCaseSensitive={true} /> <Grouping autoExpandAll={false} /> <Column dataField="Product" groupIndex={0} /> <Column dataField="Amount" caption="Sale Amount" dataType="number" format="currency" alignment="right" /> <Column dataField="Discount" caption="Discount %" dataType="number" format="percent" alignment="right" allowGrouping={false} cellRender={DiscountCell} cssClass="bullet" /> <Column dataField="SaleDate" dataType="date" /> <Column dataField="Region" dataType="string" /> <Column dataField="Sector" dataType="string" /> <Column dataField="Channel" dataType="string" /> <Column dataField="Customer" dataType="string" width={150} /> <Pager visible={true} allowedPageSizes={pageSizes} showPageSizeSelector={true} /> <Paging defaultPageSize={10} /> </DataGrid> ); }; export default App;
import React, { useCallback, useState } from 'react'; import DataGrid, { Column, Grouping, GroupPanel, Pager, Paging, SearchPanel, } from 'devextreme-react/data-grid'; import DiscountCell from './DiscountCell.js'; import { sales } from './data.js'; const pageSizes = [10, 25, 50, 100]; const App = () => { const [collapsed, setCollapsed] = useState(true); const onContentReady = useCallback( (e) => { if (collapsed) { e.component.expandRow(['EnviroCare']); setCollapsed(false); } }, [collapsed], ); return ( <DataGrid dataSource={sales} keyExpr="Id" allowColumnReordering={true} rowAlternationEnabled={true} showBorders={true} width="100%" onContentReady={onContentReady} > <GroupPanel visible={true} /> <SearchPanel visible={true} highlightCaseSensitive={true} /> <Grouping autoExpandAll={false} /> <Column dataField="Product" groupIndex={0} /> <Column dataField="Amount" caption="Sale Amount" dataType="number" format="currency" alignment="right" /> <Column dataField="Discount" caption="Discount %" dataType="number" format="percent" alignment="right" allowGrouping={false} cellRender={DiscountCell} cssClass="bullet" /> <Column dataField="SaleDate" dataType="date" /> <Column dataField="Region" dataType="string" /> <Column dataField="Sector" dataType="string" /> <Column dataField="Channel" dataType="string" /> <Column dataField="Customer" dataType="string" width={150} /> <Pager visible={true} allowedPageSizes={pageSizes} showPageSizeSelector={true} /> <Paging defaultPageSize={10} /> </DataGrid> ); }; export default App;
import React from 'react'; import Bullet, { Font, Margin, Size, Tooltip, } from 'devextreme-react/bullet'; import { type DataGridTypes } from 'devextreme-react/data-grid'; const customizeTooltip = (data) => ({ text: `${parseInt(data.value, 10)}%`, }); const DiscountCell = (cellData: DataGridTypes.ColumnCellTemplateData) => ( <Bullet showTarget={false} showZeroLevel={true} value={cellData.value * 100} startScaleValue={0} endScaleValue={100} > <Size width={150} height={35} /> <Margin top={5} bottom={0} left={5} /> <Tooltip enabled={true} paddingTopBottom={2} zIndex={5} customizeTooltip={customizeTooltip} > <Font size={18} /> </Tooltip> </Bullet> ); export default DiscountCell;
import React from 'react'; import ReactDOM from 'react-dom'; import App from './App.tsx'; ReactDOM.render( <App />, document.getElementById('app'), );
export interface Sale { Id: number; Product: string; Amount: number; Discount: string; SaleDate: string; Region: string; Sector: string; Channel: string; Customer: string; } export const sales: Sale[] = [ { "Id": 1, "Product": "Eco Supreme", "Amount": 1300, "Discount": "0.35", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 2, "Product": "Eco Max", "Amount": 4550, "Discount": "0.18", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Renewable Supplies", }, { "Id": 3, "Product": "SolarOne", "Amount": 4410, "Discount": "0.06", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 4, "Product": "SolarMax", "Amount": 8930, "Discount": "0.0311111111111111111111111111", "SaleDate": "2024-05-10T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 5, "Product": "SolarMax", "Amount": 4150, "Discount": "0.1555555555555555555555555556", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 6, "Product": "Eco Max", "Amount": 2280, "Discount": "0.088", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 7, "Product": "Eco Supreme", "Amount": 5400, "Discount": "0.3", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 8, "Product": "Eco Supreme", "Amount": 1410, "Discount": "0.295", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 9, "Product": "Eco Supreme", "Amount": 1850, "Discount": "0.075", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 10, "Product": "Eco Max", "Amount": 9360, "Discount": "0.256", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 11, "Product": "SolarMax", "Amount": 6390, "Discount": "0.16", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 12, "Product": "Eco Max", "Amount": 2220, "Discount": "0.112", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 13, "Product": "Eco Max", "Amount": 1910, "Discount": "0.236", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 14, "Product": "EnviroCare", "Amount": 1230, "Discount": "0.2971428571428571428571428571", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 15, "Product": "Eco Max", "Amount": 1890, "Discount": "0.244", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 16, "Product": "Eco Max", "Amount": 4560, "Discount": "0.176", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 17, "Product": "SolarMax", "Amount": 4130, "Discount": "0.1644444444444444444444444444", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Arthur & Sons", }, { "Id": 18, "Product": "Eco Max", "Amount": 4670, "Discount": "0.132", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 19, "Product": "SolarMax", "Amount": 6180, "Discount": "0.2533333333333333333333333333", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 20, "Product": "Eco Supreme", "Amount": 1260, "Discount": "0.37", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 21, "Product": "Eco Supreme", "Amount": 1710, "Discount": "0.145", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 22, "Product": "Eco Max", "Amount": 9880, "Discount": "0.048", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 23, "Product": "Eco Supreme", "Amount": 5790, "Discount": "0.105", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 24, "Product": "Eco Max", "Amount": 2130, "Discount": "0.148", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 25, "Product": "SolarMax", "Amount": 8800, "Discount": "0.0888888888888888888888888889", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 26, "Product": "Eco Supreme", "Amount": 5370, "Discount": "0.315", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 27, "Product": "SolarMax", "Amount": 6250, "Discount": "0.2222222222222222222222222222", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 28, "Product": "EnviroCare", "Amount": 4790, "Discount": "0.2628571428571428571428571429", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Green Energy Inc", }, { "Id": 29, "Product": "SolarMax", "Amount": 1840, "Discount": "0.1822222222222222222222222222", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 30, "Product": "SolarMax", "Amount": 4240, "Discount": "0.1155555555555555555555555556", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 31, "Product": "Eco Supreme", "Amount": 3490, "Discount": "0.255", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Retail", "Customer": "Columbia Solar", }, { "Id": 32, "Product": "Eco Max", "Amount": 6760, "Discount": "0.296", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 33, "Product": "Eco Max", "Amount": 4820, "Discount": "0.072", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 34, "Product": "Eco Supreme", "Amount": 5490, "Discount": "0.255", "SaleDate": "2024-05-10T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 35, "Product": "Eco Max", "Amount": 9300, "Discount": "0.28", "SaleDate": "2024-05-10T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 36, "Product": "Eco Max", "Amount": 2210, "Discount": "0.116", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Smith & Co", }, { "Id": 37, "Product": "Eco Max", "Amount": 7430, "Discount": "0.028", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 38, "Product": "SolarMax", "Amount": 6010, "Discount": "0.3288888888888888888888888889", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Market Eco", }, { "Id": 39, "Product": "Eco Supreme", "Amount": 3490, "Discount": "0.255", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 40, "Product": "Eco Max", "Amount": 7420, "Discount": "0.032", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Retail", "Customer": "Beacon Systems", }, { "Id": 41, "Product": "Eco Max", "Amount": 7190, "Discount": "0.124", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 42, "Product": "EnviroCare", "Amount": 6280, "Discount": "0.4114285714285714285714285714", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Retail", "Customer": "Environment Solar", }, { "Id": 43, "Product": "Eco Max", "Amount": 9790, "Discount": "0.084", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 44, "Product": "EnviroCare", "Amount": 6760, "Discount": "0.1371428571428571428571428571", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 45, "Product": "SolarMax", "Amount": 6530, "Discount": "0.0977777777777777777777777778", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "Supply Warehous", }, { "Id": 46, "Product": "Eco Max", "Amount": 9560, "Discount": "0.176", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 47, "Product": "Eco Supreme", "Amount": 5330, "Discount": "0.335", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 48, "Product": "Eco Max", "Amount": 9380, "Discount": "0.248", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 49, "Product": "Eco Max", "Amount": 2330, "Discount": "0.068", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 50, "Product": "Eco Max", "Amount": 2110, "Discount": "0.156", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Smith & Co", }, { "Id": 51, "Product": "SolarOne", "Amount": 2330, "Discount": "0.4466666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Building Management Inc", }, { "Id": 52, "Product": "EnviroCare", "Amount": 1580, "Discount": "0.0971428571428571428571428571", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 53, "Product": "SolarMax", "Amount": 2000, "Discount": "0.1111111111111111111111111111", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 54, "Product": "Eco Supreme", "Amount": 1900, "Discount": "0.05", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Building Management Inc", }, { "Id": 55, "Product": "SolarMax", "Amount": 6150, "Discount": "0.2666666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 56, "Product": "Eco Supreme", "Amount": 1740, "Discount": "0.13", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "Market Eco", }, { "Id": 57, "Product": "Eco Max", "Amount": 4520, "Discount": "0.192", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 58, "Product": "Eco Max", "Amount": 2440, "Discount": "0.024", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 59, "Product": "Eco Max", "Amount": 2080, "Discount": "0.168", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 60, "Product": "Eco Max", "Amount": 7430, "Discount": "0.028", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 61, "Product": "SolarMax", "Amount": 1610, "Discount": "0.2844444444444444444444444444", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 62, "Product": "SolarMax", "Amount": 1980, "Discount": "0.12", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Retail", "Customer": "Smith & Co", }, { "Id": 63, "Product": "Eco Max", "Amount": 7230, "Discount": "0.108", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 64, "Product": "Eco Max", "Amount": 6930, "Discount": "0.228", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 65, "Product": "Eco Supreme", "Amount": 7560, "Discount": "0.22", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Retail", "Customer": "Gemini Stores", }, { "Id": 66, "Product": "Eco Supreme", "Amount": 1840, "Discount": "0.08", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 67, "Product": "Eco Supreme", "Amount": 7550, "Discount": "0.225", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 68, "Product": "SolarMax", "Amount": 1660, "Discount": "0.2622222222222222222222222222", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Smith & Co", }, { "Id": 69, "Product": "Eco Supreme", "Amount": 5330, "Discount": "0.335", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 70, "Product": "EnviroCare", "Amount": 6660, "Discount": "0.1942857142857142857142857143", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 71, "Product": "Eco Supreme", "Amount": 1560, "Discount": "0.22", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 72, "Product": "Eco Supreme", "Amount": 7540, "Discount": "0.23", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 73, "Product": "Eco Max", "Amount": 2260, "Discount": "0.096", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Renewable Supplies", }, { "Id": 74, "Product": "SolarMax", "Amount": 1920, "Discount": "0.1466666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 75, "Product": "Eco Max", "Amount": 2020, "Discount": "0.192", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 76, "Product": "Eco Supreme", "Amount": 3690, "Discount": "0.155", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 77, "Product": "SolarMax", "Amount": 6500, "Discount": "0.1111111111111111111111111111", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 78, "Product": "Eco Supreme", "Amount": 7510, "Discount": "0.245", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 79, "Product": "SolarOne", "Amount": 2540, "Discount": "0.3066666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Solar Warehouse", }, { "Id": 80, "Product": "Eco Max", "Amount": 2330, "Discount": "0.068", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 81, "Product": "Eco Supreme", "Amount": 1380, "Discount": "0.31", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 82, "Product": "Eco Max", "Amount": 6930, "Discount": "0.228", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 83, "Product": "Eco Max", "Amount": 1950, "Discount": "0.22", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 84, "Product": "Eco Max", "Amount": 4850, "Discount": "0.06", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Global Services", }, { "Id": 85, "Product": "Eco Max", "Amount": 4840, "Discount": "0.064", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 86, "Product": "Eco Max", "Amount": 4790, "Discount": "0.084", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 87, "Product": "EnviroCare Max", "Amount": 8340, "Discount": "0.0214285714285714285714285714", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 88, "Product": "EnviroCare", "Amount": 1060, "Discount": "0.3942857142857142857142857143", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 89, "Product": "SolarOne", "Amount": 2450, "Discount": "0.3666666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 90, "Product": "Eco Max", "Amount": 2140, "Discount": "0.144", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 91, "Product": "Eco Max", "Amount": 4760, "Discount": "0.096", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 92, "Product": "Eco Max", "Amount": 4620, "Discount": "0.152", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 93, "Product": "SolarMax", "Amount": 1830, "Discount": "0.1866666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 94, "Product": "Eco Max", "Amount": 1960, "Discount": "0.216", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 95, "Product": "Eco Max", "Amount": 2330, "Discount": "0.068", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 96, "Product": "Eco Max", "Amount": 6940, "Discount": "0.224", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 97, "Product": "EnviroCare Max", "Amount": 5540, "Discount": "0.0214285714285714285714285714", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Building Management Inc", }, { "Id": 98, "Product": "EnviroCare", "Amount": 1530, "Discount": "0.1257142857142857142857142857", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Market Eco", }, { "Id": 99, "Product": "SolarMax", "Amount": 8480, "Discount": "0.2311111111111111111111111111", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "VARs", "Customer": "McCord Builders", }, { "Id": 100, "Product": "SolarMax", "Amount": 4420, "Discount": "0.0355555555555555555555555556", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 101, "Product": "SolarOne", "Amount": 1410, "Discount": "0.06", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 102, "Product": "SolarMax", "Amount": 6190, "Discount": "0.2488888888888888888888888889", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 103, "Product": "SolarMax", "Amount": 4380, "Discount": "0.0533333333333333333333333333", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Get Solar Inc", }, { "Id": 104, "Product": "Eco Max", "Amount": 4310, "Discount": "0.276", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 105, "Product": "Eco Max", "Amount": 9800, "Discount": "0.08", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 106, "Product": "Eco Max", "Amount": 7090, "Discount": "0.164", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Renewable Supplies", }, { "Id": 107, "Product": "Eco Max", "Amount": 2310, "Discount": "0.076", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 108, "Product": "Eco Supreme", "Amount": 1520, "Discount": "0.24", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "VARs", "Customer": "Smith & Co", }, { "Id": 109, "Product": "Eco Max", "Amount": 7350, "Discount": "0.06", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Arthur & Sons", }, { "Id": 110, "Product": "EnviroCare", "Amount": 1340, "Discount": "0.2342857142857142857142857143", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Retail", "Customer": "Supply Warehous", }, { "Id": 111, "Product": "SolarOne", "Amount": 960, "Discount": "0.36", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 112, "Product": "SolarMax", "Amount": 8810, "Discount": "0.0844444444444444444444444444", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 113, "Product": "SolarMax", "Amount": 8450, "Discount": "0.2444444444444444444444444444", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 114, "Product": "Eco Max", "Amount": 1760, "Discount": "0.296", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 115, "Product": "EnviroCare", "Amount": 1500, "Discount": "0.1428571428571428571428571429", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 116, "Product": "Eco Supreme", "Amount": 7660, "Discount": "0.17", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 117, "Product": "SolarMax", "Amount": 4080, "Discount": "0.1866666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 118, "Product": "Eco Supreme", "Amount": 3500, "Discount": "0.25", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "McCord Builders", }, { "Id": 119, "Product": "Eco Supreme", "Amount": 7340, "Discount": "0.33", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 120, "Product": "Eco Max", "Amount": 4910, "Discount": "0.036", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 121, "Product": "Eco Max", "Amount": 7020, "Discount": "0.192", "SaleDate": "2024-05-10T00:00:00", "Region": "Africa", "Sector": "Banking", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 122, "Product": "Eco Max", "Amount": 9900, "Discount": "0.04", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 123, "Product": "Eco Max", "Amount": 9390, "Discount": "0.244", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 124, "Product": "Eco Max", "Amount": 9660, "Discount": "0.136", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 125, "Product": "Eco Max", "Amount": 9830, "Discount": "0.068", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 126, "Product": "Eco Max", "Amount": 1850, "Discount": "0.26", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 127, "Product": "Eco Max", "Amount": 9350, "Discount": "0.26", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 128, "Product": "Eco Max", "Amount": 4280, "Discount": "0.288", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 129, "Product": "SolarMax", "Amount": 4030, "Discount": "0.2088888888888888888888888889", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Green Energy Inc", }, { "Id": 130, "Product": "EnviroCare", "Amount": 2790, "Discount": "0.4057142857142857142857142857", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 131, "Product": "Eco Supreme", "Amount": 3870, "Discount": "0.065", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 132, "Product": "SolarMax", "Amount": 8350, "Discount": "0.2888888888888888888888888889", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 133, "Product": "Eco Max", "Amount": 4270, "Discount": "0.292", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 134, "Product": "SolarMax", "Amount": 3800, "Discount": "0.3111111111111111111111111111", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 135, "Product": "Eco Supreme", "Amount": 3260, "Discount": "0.37", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 136, "Product": "Eco Max", "Amount": 9770, "Discount": "0.092", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 137, "Product": "Eco Max", "Amount": 2010, "Discount": "0.196", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 138, "Product": "EnviroCare Max", "Amount": 2430, "Discount": "0.1321428571428571428571428571", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Retail", "Customer": "McCord Builders", }, { "Id": 139, "Product": "Eco Max", "Amount": 2110, "Discount": "0.156", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 140, "Product": "Eco Supreme", "Amount": 1750, "Discount": "0.125", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 141, "Product": "SolarMax", "Amount": 6230, "Discount": "0.2311111111111111111111111111", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 142, "Product": "Eco Supreme", "Amount": 3590, "Discount": "0.205", "SaleDate": "2024-05-10T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 143, "Product": "Eco Supreme", "Amount": 1870, "Discount": "0.065", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 144, "Product": "Eco Supreme", "Amount": 5470, "Discount": "0.265", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Global Services", }, { "Id": 145, "Product": "SolarOne", "Amount": 5480, "Discount": "0.3466666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Building Management Inc", }, { "Id": 146, "Product": "Eco Max", "Amount": 7150, "Discount": "0.14", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 147, "Product": "Eco Supreme", "Amount": 1810, "Discount": "0.095", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Resellers", "Customer": "Building Management Inc", }, { "Id": 148, "Product": "Eco Max", "Amount": 9460, "Discount": "0.216", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Building Management Inc", }, { "Id": 149, "Product": "Eco Max", "Amount": 7280, "Discount": "0.088", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 150, "Product": "Eco Max", "Amount": 9630, "Discount": "0.148", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 151, "Product": "Eco Max", "Amount": 9280, "Discount": "0.288", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 152, "Product": "SolarMax", "Amount": 4270, "Discount": "0.1022222222222222222222222222", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 153, "Product": "Eco Supreme", "Amount": 5870, "Discount": "0.065", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 154, "Product": "Eco Supreme", "Amount": 3640, "Discount": "0.18", "SaleDate": "2024-05-10T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 155, "Product": "Eco Max", "Amount": 7080, "Discount": "0.168", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 156, "Product": "Eco Supreme", "Amount": 3620, "Discount": "0.19", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Get Solar Inc", }, { "Id": 157, "Product": "Eco Max", "Amount": 4890, "Discount": "0.044", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 158, "Product": "Eco Max", "Amount": 2410, "Discount": "0.036", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 159, "Product": "Eco Supreme", "Amount": 3810, "Discount": "0.095", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Health Plus Inc", }, { "Id": 160, "Product": "Eco Max", "Amount": 4940, "Discount": "0.024", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Building Management Inc", }, { "Id": 161, "Product": "Eco Supreme", "Amount": 7760, "Discount": "0.12", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 162, "Product": "Eco Supreme", "Amount": 1560, "Discount": "0.22", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 163, "Product": "Eco Max", "Amount": 4530, "Discount": "0.188", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 164, "Product": "Eco Max", "Amount": 6770, "Discount": "0.292", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 165, "Product": "SolarOne", "Amount": 2750, "Discount": "0.1666666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 166, "Product": "Eco Max", "Amount": 2200, "Discount": "0.12", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 167, "Product": "SolarMax", "Amount": 1720, "Discount": "0.2355555555555555555555555556", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "Get Solar Inc", }, { "Id": 168, "Product": "SolarMax", "Amount": 8470, "Discount": "0.2355555555555555555555555556", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 169, "Product": "SolarOne", "Amount": 1270, "Discount": "0.1533333333333333333333333333", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "Environment Solar", }, { "Id": 170, "Product": "Eco Max", "Amount": 4500, "Discount": "0.2", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 171, "Product": "Eco Max", "Amount": 9920, "Discount": "0.032", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Global Services", }, { "Id": 172, "Product": "SolarMax", "Amount": 8350, "Discount": "0.2888888888888888888888888889", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Building Management Inc", }, { "Id": 173, "Product": "Eco Supreme", "Amount": 1660, "Discount": "0.17", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 174, "Product": "EnviroCare", "Amount": 6750, "Discount": "0.1428571428571428571428571429", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 175, "Product": "Eco Supreme", "Amount": 5530, "Discount": "0.235", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 176, "Product": "SolarMax", "Amount": 8700, "Discount": "0.1333333333333333333333333333", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 177, "Product": "Eco Max", "Amount": 4390, "Discount": "0.244", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 178, "Product": "EnviroCare", "Amount": 4690, "Discount": "0.32", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 179, "Product": "Eco Max", "Amount": 9480, "Discount": "0.208", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 180, "Product": "Eco Supreme", "Amount": 5880, "Discount": "0.06", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 181, "Product": "Eco Max", "Amount": 2220, "Discount": "0.112", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 182, "Product": "Eco Max", "Amount": 4830, "Discount": "0.068", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 183, "Product": "Eco Max", "Amount": 2390, "Discount": "0.044", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 184, "Product": "Eco Max", "Amount": 4380, "Discount": "0.248", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 185, "Product": "Eco Supreme", "Amount": 5590, "Discount": "0.205", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 186, "Product": "Eco Supreme", "Amount": 3810, "Discount": "0.095", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 187, "Product": "Eco Supreme", "Amount": 5460, "Discount": "0.27", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 188, "Product": "Eco Max", "Amount": 1790, "Discount": "0.284", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 189, "Product": "Eco Supreme", "Amount": 7450, "Discount": "0.275", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 190, "Product": "SolarMax", "Amount": 1920, "Discount": "0.1466666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 191, "Product": "Eco Max", "Amount": 7040, "Discount": "0.184", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 192, "Product": "Eco Max", "Amount": 9540, "Discount": "0.184", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 193, "Product": "Eco Supreme", "Amount": 5760, "Discount": "0.12", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 194, "Product": "Eco Max", "Amount": 2240, "Discount": "0.104", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 195, "Product": "Eco Supreme", "Amount": 7460, "Discount": "0.27", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 196, "Product": "EnviroCare", "Amount": 1070, "Discount": "0.3885714285714285714285714286", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Retail", "Customer": "Health Plus Inc", }, { "Id": 197, "Product": "Eco Max", "Amount": 2370, "Discount": "0.052", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Green Energy Inc", }, { "Id": 198, "Product": "EnviroCare", "Amount": 6300, "Discount": "0.4", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 199, "Product": "EnviroCare", "Amount": 6560, "Discount": "0.2514285714285714285714285714", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 200, "Product": "Eco Supreme", "Amount": 3510, "Discount": "0.245", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Smith & Co", }, { "Id": 201, "Product": "Eco Max", "Amount": 9480, "Discount": "0.208", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 202, "Product": "EnviroCare", "Amount": 1050, "Discount": "0.4", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 203, "Product": "SolarMax", "Amount": 1620, "Discount": "0.28", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 204, "Product": "SolarMax", "Amount": 8740, "Discount": "0.1155555555555555555555555556", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Green Energy Inc", }, { "Id": 205, "Product": "Eco Supreme", "Amount": 3820, "Discount": "0.09", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Renewable Supplies", }, { "Id": 206, "Product": "Eco Max", "Amount": 6910, "Discount": "0.236", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 207, "Product": "Eco Max", "Amount": 1790, "Discount": "0.284", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 208, "Product": "EnviroCare Max", "Amount": 10630, "Discount": "0.2035714285714285714285714286", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Building Management Inc", }, { "Id": 209, "Product": "Eco Max", "Amount": 9530, "Discount": "0.188", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 210, "Product": "Eco Max", "Amount": 9720, "Discount": "0.112", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 211, "Product": "EnviroCare", "Amount": 6340, "Discount": "0.3771428571428571428571428571", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 212, "Product": "Eco Supreme", "Amount": 3640, "Discount": "0.18", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Retail", "Customer": "Building Management Inc", }, { "Id": 213, "Product": "Eco Max", "Amount": 2020, "Discount": "0.192", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 214, "Product": "Eco Supreme", "Amount": 3500, "Discount": "0.25", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 215, "Product": "Eco Max", "Amount": 2110, "Discount": "0.156", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "VARs", "Customer": "Smith & Co", }, { "Id": 216, "Product": "Eco Supreme", "Amount": 7440, "Discount": "0.28", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 217, "Product": "Eco Supreme", "Amount": 3370, "Discount": "0.315", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 218, "Product": "SolarMax", "Amount": 8910, "Discount": "0.04", "SaleDate": "2024-05-10T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 219, "Product": "SolarMax", "Amount": 6480, "Discount": "0.12", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 220, "Product": "Eco Max", "Amount": 7270, "Discount": "0.092", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 221, "Product": "SolarMax", "Amount": 2090, "Discount": "0.0711111111111111111111111111", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 222, "Product": "Eco Supreme", "Amount": 3310, "Discount": "0.345", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 223, "Product": "Eco Max", "Amount": 4410, "Discount": "0.236", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 224, "Product": "Eco Max", "Amount": 4750, "Discount": "0.1", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 225, "Product": "Eco Max", "Amount": 9770, "Discount": "0.092", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 226, "Product": "SolarMax", "Amount": 3770, "Discount": "0.3244444444444444444444444444", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 227, "Product": "SolarOne", "Amount": 860, "Discount": "0.4266666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 228, "Product": "Eco Supreme", "Amount": 3310, "Discount": "0.345", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 229, "Product": "Eco Max", "Amount": 9580, "Discount": "0.168", "SaleDate": "2024-05-10T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Direct", "Customer": "Global Services", }, { "Id": 230, "Product": "Eco Supreme", "Amount": 1950, "Discount": "0.025", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 231, "Product": "SolarMax", "Amount": 6060, "Discount": "0.3066666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 232, "Product": "Eco Max", "Amount": 1820, "Discount": "0.272", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 233, "Product": "Eco Max", "Amount": 2220, "Discount": "0.112", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 234, "Product": "Eco Supreme", "Amount": 7720, "Discount": "0.14", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 235, "Product": "EnviroCare", "Amount": 6690, "Discount": "0.1771428571428571428571428571", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Retail", "Customer": "Mercury Solar", }, { "Id": 236, "Product": "Eco Max", "Amount": 1920, "Discount": "0.232", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 237, "Product": "SolarMax", "Amount": 8440, "Discount": "0.2488888888888888888888888889", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 238, "Product": "Eco Supreme", "Amount": 7280, "Discount": "0.36", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 239, "Product": "Eco Max", "Amount": 4730, "Discount": "0.108", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Renewable Supplies", }, { "Id": 240, "Product": "Eco Max", "Amount": 7420, "Discount": "0.032", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 241, "Product": "Eco Supreme", "Amount": 3440, "Discount": "0.28", "SaleDate": "2024-05-10T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 242, "Product": "SolarMax", "Amount": 6130, "Discount": "0.2755555555555555555555555556", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 243, "Product": "SolarMax", "Amount": 8840, "Discount": "0.0711111111111111111111111111", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 244, "Product": "Eco Max", "Amount": 7420, "Discount": "0.032", "SaleDate": "2024-05-10T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 245, "Product": "SolarMax", "Amount": 8940, "Discount": "0.0266666666666666666666666667", "SaleDate": "2024-05-10T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Renewable Supplies", }, { "Id": 246, "Product": "Eco Supreme", "Amount": 7600, "Discount": "0.2", "SaleDate": "2024-05-10T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 247, "Product": "Eco Max", "Amount": 9590, "Discount": "0.164", "SaleDate": "2024-05-10T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Columbia Solar", }, { "Id": 248, "Product": "EnviroCare", "Amount": 4690, "Discount": "0.32", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 249, "Product": "Eco Max", "Amount": 7100, "Discount": "0.16", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 250, "Product": "Eco Supreme", "Amount": 5510, "Discount": "0.245", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 251, "Product": "Eco Supreme", "Amount": 7760, "Discount": "0.12", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 252, "Product": "SolarMax", "Amount": 6050, "Discount": "0.3111111111111111111111111111", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 253, "Product": "SolarMax", "Amount": 8300, "Discount": "0.3111111111111111111111111111", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "McCord Builders", }, { "Id": 254, "Product": "SolarMax", "Amount": 6330, "Discount": "0.1866666666666666666666666667", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 255, "Product": "SolarMax", "Amount": 1580, "Discount": "0.2977777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 256, "Product": "Eco Supreme", "Amount": 1730, "Discount": "0.135", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 257, "Product": "SolarMax", "Amount": 3910, "Discount": "0.2622222222222222222222222222", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Mercury Solar", }, { "Id": 258, "Product": "SolarMax", "Amount": 4020, "Discount": "0.2133333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 259, "Product": "Eco Supreme", "Amount": 3540, "Discount": "0.23", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 260, "Product": "SolarMax", "Amount": 6400, "Discount": "0.1555555555555555555555555556", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Global Services", }, { "Id": 261, "Product": "Eco Max", "Amount": 9350, "Discount": "0.26", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 262, "Product": "Eco Max", "Amount": 6980, "Discount": "0.208", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 263, "Product": "Eco Max", "Amount": 7040, "Discount": "0.184", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 264, "Product": "SolarMax", "Amount": 6620, "Discount": "0.0577777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Columbia Solar", }, { "Id": 265, "Product": "Eco Supreme", "Amount": 1370, "Discount": "0.315", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 266, "Product": "Eco Max", "Amount": 4700, "Discount": "0.12", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 267, "Product": "Eco Max", "Amount": 4740, "Discount": "0.104", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 268, "Product": "SolarMax", "Amount": 8720, "Discount": "0.1244444444444444444444444444", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 269, "Product": "Eco Supreme", "Amount": 7460, "Discount": "0.27", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 270, "Product": "Eco Supreme", "Amount": 1450, "Discount": "0.275", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Building Management Inc", }, { "Id": 271, "Product": "SolarMax", "Amount": 6080, "Discount": "0.2977777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 272, "Product": "EnviroCare", "Amount": 6780, "Discount": "0.1257142857142857142857142857", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 273, "Product": "Eco Max", "Amount": 7150, "Discount": "0.14", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 274, "Product": "Eco Max", "Amount": 9420, "Discount": "0.232", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Smith & Co", }, { "Id": 275, "Product": "Eco Supreme", "Amount": 3880, "Discount": "0.06", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 276, "Product": "Eco Max", "Amount": 4800, "Discount": "0.08", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 277, "Product": "EnviroCare", "Amount": 1180, "Discount": "0.3257142857142857142857142857", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 278, "Product": "SolarMax", "Amount": 6200, "Discount": "0.2444444444444444444444444444", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Retail", "Customer": "Renewable Supplies", }, { "Id": 279, "Product": "EnviroCare", "Amount": 5040, "Discount": "0.12", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 280, "Product": "EnviroCare", "Amount": 3240, "Discount": "0.1485714285714285714285714286", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 281, "Product": "Eco Supreme", "Amount": 3490, "Discount": "0.255", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 282, "Product": "Eco Supreme", "Amount": 3760, "Discount": "0.12", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 283, "Product": "SolarOne", "Amount": 5670, "Discount": "0.22", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 284, "Product": "EnviroCare", "Amount": 5060, "Discount": "0.1085714285714285714285714286", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "McCord Builders", }, { "Id": 285, "Product": "SolarMax", "Amount": 1700, "Discount": "0.2444444444444444444444444444", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 286, "Product": "SolarMax", "Amount": 6160, "Discount": "0.2622222222222222222222222222", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 287, "Product": "SolarOne", "Amount": 5450, "Discount": "0.3666666666666666666666666667", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 288, "Product": "SolarMax", "Amount": 6170, "Discount": "0.2577777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "Global Services", }, { "Id": 289, "Product": "Eco Supreme", "Amount": 5790, "Discount": "0.105", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Energy", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 290, "Product": "Eco Max", "Amount": 4490, "Discount": "0.204", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 291, "Product": "Eco Max", "Amount": 7070, "Discount": "0.172", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 292, "Product": "Eco Max", "Amount": 2130, "Discount": "0.148", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 293, "Product": "Eco Supreme", "Amount": 7470, "Discount": "0.265", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 294, "Product": "Eco Supreme", "Amount": 3760, "Discount": "0.12", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 295, "Product": "Eco Max", "Amount": 2080, "Discount": "0.168", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 296, "Product": "Eco Max", "Amount": 2140, "Discount": "0.144", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 297, "Product": "SolarMax", "Amount": 1880, "Discount": "0.1644444444444444444444444444", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 298, "Product": "SolarOne", "Amount": 1370, "Discount": "0.0866666666666666666666666667", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Smith & Co", }, { "Id": 299, "Product": "Eco Max", "Amount": 7320, "Discount": "0.072", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Global Services", }, { "Id": 300, "Product": "Eco Supreme", "Amount": 5580, "Discount": "0.21", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 301, "Product": "SolarOne", "Amount": 4200, "Discount": "0.2", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 302, "Product": "SolarMax", "Amount": 6320, "Discount": "0.1911111111111111111111111111", "SaleDate": "2024-05-11T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Mercury Solar", }, { "Id": 303, "Product": "Eco Supreme", "Amount": 5880, "Discount": "0.06", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 304, "Product": "SolarMax", "Amount": 1800, "Discount": "0.2", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "McCord Builders", }, { "Id": 305, "Product": "Eco Max", "Amount": 2340, "Discount": "0.064", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 306, "Product": "SolarOne", "Amount": 2890, "Discount": "0.0733333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "Africa", "Sector": "Banking", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 307, "Product": "EnviroCare", "Amount": 1260, "Discount": "0.28", "SaleDate": "2024-05-11T00:00:00", "Region": "Africa", "Sector": "Banking", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 308, "Product": "Eco Max", "Amount": 7280, "Discount": "0.088", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 309, "Product": "Eco Max", "Amount": 4500, "Discount": "0.2", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Smith & Co", }, { "Id": 310, "Product": "Eco Max", "Amount": 4730, "Discount": "0.108", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Market Eco", }, { "Id": 311, "Product": "SolarMax", "Amount": 6470, "Discount": "0.1244444444444444444444444444", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 312, "Product": "EnviroCare", "Amount": 5190, "Discount": "0.0342857142857142857142857143", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 313, "Product": "Eco Max", "Amount": 7230, "Discount": "0.108", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 314, "Product": "Eco Max", "Amount": 9850, "Discount": "0.06", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 315, "Product": "EnviroCare", "Amount": 6920, "Discount": "0.0457142857142857142857142857", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 316, "Product": "Eco Max", "Amount": 6920, "Discount": "0.232", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 317, "Product": "Eco Supreme", "Amount": 1360, "Discount": "0.32", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 318, "Product": "Eco Supreme", "Amount": 7480, "Discount": "0.26", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 319, "Product": "SolarMax", "Amount": 1670, "Discount": "0.2577777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Renewable Supplies", }, { "Id": 320, "Product": "Eco Supreme", "Amount": 5650, "Discount": "0.175", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 321, "Product": "Eco Max", "Amount": 1830, "Discount": "0.268", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 322, "Product": "Eco Max", "Amount": 6990, "Discount": "0.204", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 323, "Product": "Eco Max", "Amount": 6950, "Discount": "0.22", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 324, "Product": "EnviroCare", "Amount": 6550, "Discount": "0.2571428571428571428571428571", "SaleDate": "2024-05-11T00:00:00", "Region": "Africa", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 325, "Product": "SolarMax", "Amount": 3790, "Discount": "0.3155555555555555555555555556", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 326, "Product": "SolarMax", "Amount": 4370, "Discount": "0.0577777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Columbia Solar", }, { "Id": 327, "Product": "Eco Supreme", "Amount": 5770, "Discount": "0.115", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 328, "Product": "Eco Max", "Amount": 9440, "Discount": "0.224", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Get Solar Inc", }, { "Id": 329, "Product": "Eco Max", "Amount": 9860, "Discount": "0.056", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Mercury Solar", }, { "Id": 330, "Product": "Eco Supreme", "Amount": 3530, "Discount": "0.235", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 331, "Product": "Eco Supreme", "Amount": 1550, "Discount": "0.225", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Smith & Co", }, { "Id": 332, "Product": "EnviroCare", "Amount": 1370, "Discount": "0.2171428571428571428571428571", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 333, "Product": "Eco Supreme", "Amount": 7420, "Discount": "0.29", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 334, "Product": "Eco Max", "Amount": 7110, "Discount": "0.156", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 335, "Product": "SolarMax", "Amount": 2010, "Discount": "0.1066666666666666666666666667", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Market Eco", }, { "Id": 336, "Product": "Eco Supreme", "Amount": 1540, "Discount": "0.23", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 337, "Product": "Eco Max", "Amount": 1880, "Discount": "0.248", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 338, "Product": "Eco Supreme", "Amount": 1500, "Discount": "0.25", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 339, "Product": "SolarOne", "Amount": 5620, "Discount": "0.2533333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Smith & Co", }, { "Id": 340, "Product": "SolarOne", "Amount": 3880, "Discount": "0.4133333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 341, "Product": "SolarOne", "Amount": 2500, "Discount": "0.3333333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 342, "Product": "SolarMax", "Amount": 3830, "Discount": "0.2977777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Gemini Stores", }, { "Id": 343, "Product": "Eco Max", "Amount": 4860, "Discount": "0.056", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 344, "Product": "SolarMax", "Amount": 8540, "Discount": "0.2044444444444444444444444444", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Retail", "Customer": "Get Solar Inc", }, { "Id": 345, "Product": "Eco Supreme", "Amount": 7440, "Discount": "0.28", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 346, "Product": "Eco Max", "Amount": 2230, "Discount": "0.108", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 347, "Product": "SolarMax", "Amount": 8900, "Discount": "0.0444444444444444444444444444", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 348, "Product": "Eco Max", "Amount": 9710, "Discount": "0.116", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 349, "Product": "SolarMax", "Amount": 3990, "Discount": "0.2266666666666666666666666667", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 350, "Product": "Eco Supreme", "Amount": 3420, "Discount": "0.29", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 351, "Product": "Eco Max", "Amount": 1990, "Discount": "0.204", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Retail", "Customer": "Beacon Systems", }, { "Id": 352, "Product": "Eco Max", "Amount": 2110, "Discount": "0.156", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Get Solar Inc", }, { "Id": 353, "Product": "Eco Max", "Amount": 9660, "Discount": "0.136", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 354, "Product": "Eco Max", "Amount": 1870, "Discount": "0.252", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 355, "Product": "Eco Max", "Amount": 4470, "Discount": "0.212", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 356, "Product": "Eco Max", "Amount": 7300, "Discount": "0.08", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 357, "Product": "SolarMax", "Amount": 1540, "Discount": "0.3155555555555555555555555556", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 358, "Product": "Eco Max", "Amount": 9720, "Discount": "0.112", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 359, "Product": "SolarMax", "Amount": 4150, "Discount": "0.1555555555555555555555555556", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "McCord Builders", }, { "Id": 360, "Product": "SolarMax", "Amount": 6360, "Discount": "0.1733333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 361, "Product": "Eco Max", "Amount": 9450, "Discount": "0.22", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Global Services", }, { "Id": 362, "Product": "EnviroCare", "Amount": 1540, "Discount": "0.12", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 363, "Product": "Eco Max", "Amount": 7450, "Discount": "0.02", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 364, "Product": "SolarMax", "Amount": 8560, "Discount": "0.1955555555555555555555555556", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 365, "Product": "Eco Max", "Amount": 2090, "Discount": "0.164", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Retail", "Customer": "Beacon Systems", }, { "Id": 366, "Product": "SolarOne", "Amount": 2320, "Discount": "0.4533333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 367, "Product": "EnviroCare", "Amount": 4980, "Discount": "0.1542857142857142857142857143", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 368, "Product": "Eco Max", "Amount": 4530, "Discount": "0.188", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 369, "Product": "SolarMax", "Amount": 3940, "Discount": "0.2488888888888888888888888889", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 370, "Product": "SolarOne", "Amount": 4210, "Discount": "0.1933333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 371, "Product": "Eco Max", "Amount": 9780, "Discount": "0.088", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 372, "Product": "Eco Max", "Amount": 7360, "Discount": "0.056", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Green Energy Inc", }, { "Id": 373, "Product": "SolarOne", "Amount": 5410, "Discount": "0.3933333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Retail", "Customer": "Apollo Inc", }, { "Id": 374, "Product": "Eco Max", "Amount": 4740, "Discount": "0.104", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 375, "Product": "Eco Supreme", "Amount": 5280, "Discount": "0.36", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 376, "Product": "SolarMax", "Amount": 3820, "Discount": "0.3022222222222222222222222222", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 377, "Product": "SolarMax", "Amount": 6620, "Discount": "0.0577777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 378, "Product": "Eco Max", "Amount": 6860, "Discount": "0.256", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Supply Warehous", }, { "Id": 379, "Product": "SolarMax", "Amount": 8900, "Discount": "0.0444444444444444444444444444", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 380, "Product": "Eco Max", "Amount": 2090, "Discount": "0.164", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 381, "Product": "Eco Supreme", "Amount": 7730, "Discount": "0.135", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 382, "Product": "Eco Max", "Amount": 4540, "Discount": "0.184", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 383, "Product": "EnviroCare", "Amount": 3420, "Discount": "0.0457142857142857142857142857", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Health Plus Inc", }, { "Id": 384, "Product": "Eco Max", "Amount": 1840, "Discount": "0.264", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 385, "Product": "EnviroCare", "Amount": 6340, "Discount": "0.3771428571428571428571428571", "SaleDate": "2024-05-11T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 386, "Product": "Eco Max", "Amount": 9810, "Discount": "0.076", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 387, "Product": "SolarMax", "Amount": 4230, "Discount": "0.12", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 388, "Product": "Eco Supreme", "Amount": 5400, "Discount": "0.3", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 389, "Product": "SolarMax", "Amount": 8880, "Discount": "0.0533333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 390, "Product": "Eco Supreme", "Amount": 1850, "Discount": "0.075", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Green Energy Inc", }, { "Id": 391, "Product": "SolarMax", "Amount": 6490, "Discount": "0.1155555555555555555555555556", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 392, "Product": "Eco Max", "Amount": 9310, "Discount": "0.276", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 393, "Product": "SolarMax", "Amount": 6280, "Discount": "0.2088888888888888888888888889", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 394, "Product": "Eco Max", "Amount": 7070, "Discount": "0.172", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Arthur & Sons", }, { "Id": 395, "Product": "Eco Supreme", "Amount": 5910, "Discount": "0.045", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 396, "Product": "SolarMax", "Amount": 6110, "Discount": "0.2844444444444444444444444444", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Solar Warehouse", }, { "Id": 397, "Product": "SolarMax", "Amount": 1800, "Discount": "0.2", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 398, "Product": "Eco Supreme", "Amount": 5390, "Discount": "0.305", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Renewable Supplies", }, { "Id": 399, "Product": "Eco Max", "Amount": 9890, "Discount": "0.044", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 400, "Product": "Eco Max", "Amount": 6920, "Discount": "0.232", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 401, "Product": "SolarMax", "Amount": 4140, "Discount": "0.16", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Resellers", "Customer": "Global Services", }, { "Id": 402, "Product": "EnviroCare", "Amount": 1420, "Discount": "0.1885714285714285714285714286", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 403, "Product": "Eco Supreme", "Amount": 7280, "Discount": "0.36", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 404, "Product": "SolarMax", "Amount": 1820, "Discount": "0.1911111111111111111111111111", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 405, "Product": "Eco Max", "Amount": 4750, "Discount": "0.1", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 406, "Product": "Eco Supreme", "Amount": 5860, "Discount": "0.07", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 407, "Product": "Eco Supreme", "Amount": 5520, "Discount": "0.24", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 408, "Product": "Eco Max", "Amount": 2320, "Discount": "0.072", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Arthur & Sons", }, { "Id": 409, "Product": "SolarMax", "Amount": 6440, "Discount": "0.1377777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 410, "Product": "Eco Max", "Amount": 9680, "Discount": "0.128", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 411, "Product": "Eco Max", "Amount": 9510, "Discount": "0.196", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 412, "Product": "Eco Max", "Amount": 7100, "Discount": "0.16", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 413, "Product": "Eco Supreme", "Amount": 7550, "Discount": "0.225", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 414, "Product": "Eco Max", "Amount": 7120, "Discount": "0.152", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 415, "Product": "Eco Supreme", "Amount": 7260, "Discount": "0.37", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 416, "Product": "EnviroCare Max", "Amount": 10570, "Discount": "0.225", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 417, "Product": "SolarMax", "Amount": 3870, "Discount": "0.28", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 418, "Product": "Eco Max", "Amount": 4400, "Discount": "0.24", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 419, "Product": "SolarMax", "Amount": 1850, "Discount": "0.1777777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 420, "Product": "Eco Supreme", "Amount": 3700, "Discount": "0.15", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Green Energy Inc", }, { "Id": 421, "Product": "Eco Supreme", "Amount": 1840, "Discount": "0.08", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Retail", "Customer": "Arthur & Sons", }, { "Id": 422, "Product": "SolarMax", "Amount": 4250, "Discount": "0.1111111111111111111111111111", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 423, "Product": "Eco Supreme", "Amount": 1350, "Discount": "0.325", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Green Energy Inc", }, { "Id": 424, "Product": "Eco Max", "Amount": 2270, "Discount": "0.092", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 425, "Product": "Eco Max", "Amount": 9580, "Discount": "0.168", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 426, "Product": "Eco Supreme", "Amount": 1460, "Discount": "0.27", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 427, "Product": "SolarMax", "Amount": 4240, "Discount": "0.1155555555555555555555555556", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 428, "Product": "Eco Max", "Amount": 2350, "Discount": "0.06", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Green Energy Inc", }, { "Id": 429, "Product": "Eco Max", "Amount": 4720, "Discount": "0.112", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Smith & Co", }, { "Id": 430, "Product": "Eco Max", "Amount": 9940, "Discount": "0.024", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Building Management Inc", }, { "Id": 431, "Product": "Eco Supreme", "Amount": 3650, "Discount": "0.175", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 432, "Product": "EnviroCare", "Amount": 6670, "Discount": "0.1885714285714285714285714286", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 433, "Product": "Eco Max", "Amount": 9480, "Discount": "0.208", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Global Services", }, { "Id": 434, "Product": "Eco Max", "Amount": 4730, "Discount": "0.108", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Green Energy Inc", }, { "Id": 435, "Product": "SolarMax", "Amount": 8650, "Discount": "0.1555555555555555555555555556", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 436, "Product": "SolarOne", "Amount": 2500, "Discount": "0.3333333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 437, "Product": "EnviroCare", "Amount": 4790, "Discount": "0.2628571428571428571428571429", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 438, "Product": "Eco Max", "Amount": 7320, "Discount": "0.072", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 439, "Product": "Eco Supreme", "Amount": 5520, "Discount": "0.24", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 440, "Product": "Eco Max", "Amount": 9740, "Discount": "0.104", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 441, "Product": "Eco Supreme", "Amount": 5680, "Discount": "0.16", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Retail", "Customer": "Gemini Stores", }, { "Id": 442, "Product": "Eco Supreme", "Amount": 1920, "Discount": "0.04", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 443, "Product": "Eco Max", "Amount": 4700, "Discount": "0.12", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 444, "Product": "Eco Supreme", "Amount": 5430, "Discount": "0.285", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 445, "Product": "Eco Max", "Amount": 7160, "Discount": "0.136", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 446, "Product": "Eco Supreme", "Amount": 5330, "Discount": "0.335", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 447, "Product": "Eco Max", "Amount": 6930, "Discount": "0.228", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 448, "Product": "Eco Supreme", "Amount": 7910, "Discount": "0.045", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Solar Warehouse", }, { "Id": 449, "Product": "Eco Max", "Amount": 7210, "Discount": "0.116", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Retail", "Customer": "McCord Builders", }, { "Id": 450, "Product": "SolarMax", "Amount": 8500, "Discount": "0.2222222222222222222222222222", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 451, "Product": "SolarMax", "Amount": 1830, "Discount": "0.1866666666666666666666666667", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Renewable Supplies", }, { "Id": 452, "Product": "EnviroCare", "Amount": 1400, "Discount": "0.2", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 453, "Product": "Eco Max", "Amount": 9580, "Discount": "0.168", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 454, "Product": "Eco Supreme", "Amount": 1340, "Discount": "0.33", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 455, "Product": "Eco Max", "Amount": 7210, "Discount": "0.116", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 456, "Product": "Eco Max", "Amount": 9680, "Discount": "0.128", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 457, "Product": "Eco Max", "Amount": 1810, "Discount": "0.276", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Retail", "Customer": "Environment Solar", }, { "Id": 458, "Product": "Eco Max", "Amount": 2130, "Discount": "0.148", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 459, "Product": "Eco Max", "Amount": 6990, "Discount": "0.204", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 460, "Product": "Eco Supreme", "Amount": 3880, "Discount": "0.06", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Solar Warehouse", }, { "Id": 461, "Product": "SolarMax", "Amount": 8330, "Discount": "0.2977777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 462, "Product": "SolarMax", "Amount": 4140, "Discount": "0.16", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 463, "Product": "SolarMax", "Amount": 4380, "Discount": "0.0533333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 464, "Product": "Eco Supreme", "Amount": 3760, "Discount": "0.12", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Mercury Solar", }, { "Id": 465, "Product": "Eco Supreme", "Amount": 7410, "Discount": "0.295", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 466, "Product": "Eco Max", "Amount": 4910, "Discount": "0.036", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 467, "Product": "SolarMax", "Amount": 1720, "Discount": "0.2355555555555555555555555556", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Retail", "Customer": "McCord Builders", }, { "Id": 468, "Product": "EnviroCare", "Amount": 6600, "Discount": "0.2285714285714285714285714286", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 469, "Product": "SolarOne", "Amount": 5740, "Discount": "0.1733333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 470, "Product": "Eco Supreme", "Amount": 5510, "Discount": "0.245", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 471, "Product": "Eco Max", "Amount": 4920, "Discount": "0.032", "SaleDate": "2024-05-11T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 472, "Product": "Eco Max", "Amount": 9790, "Discount": "0.084", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 473, "Product": "SolarMax", "Amount": 8510, "Discount": "0.2177777777777777777777777778", "SaleDate": "2024-05-11T00:00:00", "Region": "Africa", "Sector": "Banking", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 474, "Product": "Eco Supreme", "Amount": 1920, "Discount": "0.04", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 475, "Product": "Eco Supreme", "Amount": 5640, "Discount": "0.18", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 476, "Product": "Eco Max", "Amount": 4780, "Discount": "0.088", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 477, "Product": "Eco Supreme", "Amount": 7260, "Discount": "0.37", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 478, "Product": "EnviroCare", "Amount": 2820, "Discount": "0.3885714285714285714285714286", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 479, "Product": "SolarMax", "Amount": 8680, "Discount": "0.1422222222222222222222222222", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 480, "Product": "Eco Max", "Amount": 4530, "Discount": "0.188", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 481, "Product": "SolarMax", "Amount": 6600, "Discount": "0.0666666666666666666666666667", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Green Energy Inc", }, { "Id": 482, "Product": "Eco Max", "Amount": 7100, "Discount": "0.16", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 483, "Product": "SolarMax", "Amount": 6090, "Discount": "0.2933333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Renewable Supplies", }, { "Id": 484, "Product": "Eco Max", "Amount": 9860, "Discount": "0.056", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 485, "Product": "Eco Supreme", "Amount": 3930, "Discount": "0.035", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 486, "Product": "SolarMax", "Amount": 8800, "Discount": "0.0888888888888888888888888889", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Retail", "Customer": "Apollo Inc", }, { "Id": 487, "Product": "Eco Supreme", "Amount": 5820, "Discount": "0.09", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Beacon Systems", }, { "Id": 488, "Product": "Eco Max", "Amount": 7300, "Discount": "0.08", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 489, "Product": "SolarOne", "Amount": 1140, "Discount": "0.24", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Beacon Systems", }, { "Id": 490, "Product": "SolarOne", "Amount": 2690, "Discount": "0.2066666666666666666666666667", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 491, "Product": "Eco Max", "Amount": 9760, "Discount": "0.096", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Solar Warehouse", }, { "Id": 492, "Product": "Eco Max", "Amount": 7430, "Discount": "0.028", "SaleDate": "2024-05-11T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 493, "Product": "Eco Max", "Amount": 9930, "Discount": "0.028", "SaleDate": "2024-05-11T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 494, "Product": "Eco Supreme", "Amount": 7890, "Discount": "0.055", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 495, "Product": "Eco Supreme", "Amount": 7710, "Discount": "0.145", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Arthur & Sons", }, { "Id": 496, "Product": "Eco Supreme", "Amount": 5430, "Discount": "0.285", "SaleDate": "2024-05-11T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "Resellers", "Customer": "McCord Builders", }, { "Id": 497, "Product": "Eco Max", "Amount": 6930, "Discount": "0.228", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 498, "Product": "SolarOne", "Amount": 1270, "Discount": "0.1533333333333333333333333333", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 499, "Product": "SolarOne", "Amount": 2900, "Discount": "0.0666666666666666666666666667", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 500, "Product": "Eco Supreme", "Amount": 5280, "Discount": "0.36", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 501, "Product": "EnviroCare", "Amount": 1360, "Discount": "0.2228571428571428571428571429", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 502, "Product": "Eco Supreme", "Amount": 1270, "Discount": "0.365", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 503, "Product": "Eco Max", "Amount": 7060, "Discount": "0.176", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 504, "Product": "Eco Supreme", "Amount": 1750, "Discount": "0.125", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 505, "Product": "SolarOne", "Amount": 950, "Discount": "0.3666666666666666666666666667", "SaleDate": "2024-05-11T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 506, "Product": "SolarOne", "Amount": 1130, "Discount": "0.2466666666666666666666666667", "SaleDate": "2024-05-11T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 507, "Product": "Eco Max", "Amount": 7230, "Discount": "0.108", "SaleDate": "2024-05-11T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 508, "Product": "SolarOne", "Amount": 4170, "Discount": "0.22", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 509, "Product": "Eco Max", "Amount": 4810, "Discount": "0.076", "SaleDate": "2024-05-12T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 510, "Product": "EnviroCare", "Amount": 2790, "Discount": "0.4057142857142857142857142857", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 511, "Product": "Eco Supreme", "Amount": 7420, "Discount": "0.29", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Columbia Solar", }, { "Id": 512, "Product": "Eco Max", "Amount": 7430, "Discount": "0.028", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 513, "Product": "SolarMax", "Amount": 4390, "Discount": "0.0488888888888888888888888889", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 514, "Product": "Eco Max", "Amount": 4630, "Discount": "0.148", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 515, "Product": "Eco Supreme", "Amount": 5890, "Discount": "0.055", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Columbia Solar", }, { "Id": 516, "Product": "SolarMax", "Amount": 3930, "Discount": "0.2533333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 517, "Product": "Eco Max", "Amount": 9410, "Discount": "0.236", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 518, "Product": "Eco Max", "Amount": 7060, "Discount": "0.176", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 519, "Product": "Eco Supreme", "Amount": 1620, "Discount": "0.19", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 520, "Product": "Eco Max", "Amount": 7010, "Discount": "0.196", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Mercury Solar", }, { "Id": 521, "Product": "SolarMax", "Amount": 4180, "Discount": "0.1422222222222222222222222222", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 522, "Product": "EnviroCare", "Amount": 3080, "Discount": "0.24", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "Smith & Co", }, { "Id": 523, "Product": "SolarMax", "Amount": 4260, "Discount": "0.1066666666666666666666666667", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 524, "Product": "SolarMax", "Amount": 6220, "Discount": "0.2355555555555555555555555556", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Smith & Co", }, { "Id": 525, "Product": "EnviroCare", "Amount": 4580, "Discount": "0.3828571428571428571428571429", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 526, "Product": "SolarOne", "Amount": 2410, "Discount": "0.3933333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 527, "Product": "Eco Max", "Amount": 9860, "Discount": "0.056", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 528, "Product": "SolarMax", "Amount": 8880, "Discount": "0.0533333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 529, "Product": "SolarMax", "Amount": 1670, "Discount": "0.2577777777777777777777777778", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 530, "Product": "Eco Max", "Amount": 6960, "Discount": "0.216", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 531, "Product": "Eco Supreme", "Amount": 5790, "Discount": "0.105", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 532, "Product": "Eco Max", "Amount": 7420, "Discount": "0.032", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 533, "Product": "EnviroCare", "Amount": 6870, "Discount": "0.0742857142857142857142857143", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 534, "Product": "SolarOne", "Amount": 2760, "Discount": "0.16", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 535, "Product": "Eco Supreme", "Amount": 3510, "Discount": "0.245", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 536, "Product": "Eco Max", "Amount": 6790, "Discount": "0.284", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Solar Warehouse", }, { "Id": 537, "Product": "EnviroCare", "Amount": 6410, "Discount": "0.3371428571428571428571428571", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 538, "Product": "Eco Supreme", "Amount": 3770, "Discount": "0.115", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 539, "Product": "SolarMax", "Amount": 6580, "Discount": "0.0755555555555555555555555556", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 540, "Product": "Eco Max", "Amount": 9500, "Discount": "0.2", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 541, "Product": "Eco Supreme", "Amount": 5650, "Discount": "0.175", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 542, "Product": "Eco Max", "Amount": 4630, "Discount": "0.148", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 543, "Product": "Eco Max", "Amount": 9700, "Discount": "0.12", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Columbia Solar", }, { "Id": 544, "Product": "SolarMax", "Amount": 2140, "Discount": "0.0488888888888888888888888889", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 545, "Product": "Eco Max", "Amount": 4950, "Discount": "0.02", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 546, "Product": "SolarMax", "Amount": 8860, "Discount": "0.0622222222222222222222222222", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 547, "Product": "SolarMax", "Amount": 1730, "Discount": "0.2311111111111111111111111111", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 548, "Product": "SolarMax", "Amount": 8470, "Discount": "0.2355555555555555555555555556", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 549, "Product": "SolarMax", "Amount": 4340, "Discount": "0.0711111111111111111111111111", "SaleDate": "2024-05-12T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Retail", "Customer": "Supply Warehous", }, { "Id": 550, "Product": "Eco Max", "Amount": 2050, "Discount": "0.18", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 551, "Product": "Eco Max", "Amount": 7390, "Discount": "0.044", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 552, "Product": "EnviroCare", "Amount": 6570, "Discount": "0.2457142857142857142857142857", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 553, "Product": "Eco Supreme", "Amount": 5500, "Discount": "0.25", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 554, "Product": "SolarMax", "Amount": 2150, "Discount": "0.0444444444444444444444444444", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "McCord Builders", }, { "Id": 555, "Product": "EnviroCare", "Amount": 4610, "Discount": "0.3657142857142857142857142857", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 556, "Product": "Eco Max", "Amount": 4410, "Discount": "0.236", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Building Management Inc", }, { "Id": 557, "Product": "Eco Max", "Amount": 2400, "Discount": "0.04", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 558, "Product": "SolarMax", "Amount": 6560, "Discount": "0.0844444444444444444444444444", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 559, "Product": "SolarOne", "Amount": 4450, "Discount": "0.0333333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 560, "Product": "SolarMax", "Amount": 8810, "Discount": "0.0844444444444444444444444444", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 561, "Product": "Eco Supreme", "Amount": 1720, "Discount": "0.14", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Market Eco", }, { "Id": 562, "Product": "Eco Supreme", "Amount": 3540, "Discount": "0.23", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Health Plus Inc", }, { "Id": 563, "Product": "Eco Supreme", "Amount": 3910, "Discount": "0.045", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 564, "Product": "Eco Max", "Amount": 6760, "Discount": "0.296", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Renewable Supplies", }, { "Id": 565, "Product": "Eco Supreme", "Amount": 1820, "Discount": "0.09", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 566, "Product": "EnviroCare", "Amount": 1400, "Discount": "0.2", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 567, "Product": "Eco Max", "Amount": 1900, "Discount": "0.24", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 568, "Product": "SolarMax", "Amount": 4020, "Discount": "0.2133333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 569, "Product": "SolarOne", "Amount": 5500, "Discount": "0.3333333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 570, "Product": "Eco Supreme", "Amount": 1750, "Discount": "0.125", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 571, "Product": "Eco Max", "Amount": 7150, "Discount": "0.14", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 572, "Product": "Eco Supreme", "Amount": 7740, "Discount": "0.13", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 573, "Product": "Eco Supreme", "Amount": 3560, "Discount": "0.22", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Columbia Solar", }, { "Id": 574, "Product": "SolarMax", "Amount": 6270, "Discount": "0.2133333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 575, "Product": "SolarOne", "Amount": 5920, "Discount": "0.0533333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Green Energy Inc", }, { "Id": 576, "Product": "SolarMax", "Amount": 8370, "Discount": "0.28", "SaleDate": "2024-05-12T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 577, "Product": "Eco Max", "Amount": 9450, "Discount": "0.22", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 578, "Product": "Eco Max", "Amount": 2340, "Discount": "0.064", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Columbia Solar", }, { "Id": 579, "Product": "EnviroCare", "Amount": 1520, "Discount": "0.1314285714285714285714285714", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 580, "Product": "EnviroCare", "Amount": 5050, "Discount": "0.1142857142857142857142857143", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 581, "Product": "Eco Supreme", "Amount": 1640, "Discount": "0.18", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 582, "Product": "Eco Max", "Amount": 4930, "Discount": "0.028", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 583, "Product": "Eco Max", "Amount": 7000, "Discount": "0.2", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 584, "Product": "Eco Supreme", "Amount": 1860, "Discount": "0.07", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 585, "Product": "Eco Supreme", "Amount": 1670, "Discount": "0.165", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Retail", "Customer": "Apollo Inc", }, { "Id": 586, "Product": "Eco Max", "Amount": 2250, "Discount": "0.1", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 587, "Product": "Eco Supreme", "Amount": 3680, "Discount": "0.16", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Retail", "Customer": "Gemini Stores", }, { "Id": 588, "Product": "Eco Supreme", "Amount": 5420, "Discount": "0.29", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 589, "Product": "Eco Max", "Amount": 4900, "Discount": "0.04", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 590, "Product": "Eco Supreme", "Amount": 3540, "Discount": "0.23", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 591, "Product": "Eco Max", "Amount": 9420, "Discount": "0.232", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 592, "Product": "Eco Max", "Amount": 4510, "Discount": "0.196", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Smith & Co", }, { "Id": 593, "Product": "Eco Supreme", "Amount": 3740, "Discount": "0.13", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 594, "Product": "EnviroCare", "Amount": 1570, "Discount": "0.1028571428571428571428571429", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 595, "Product": "SolarMax", "Amount": 6270, "Discount": "0.2133333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 596, "Product": "Eco Supreme", "Amount": 5260, "Discount": "0.37", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 597, "Product": "Eco Supreme", "Amount": 1780, "Discount": "0.11", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Renewable Supplies", }, { "Id": 598, "Product": "Eco Max", "Amount": 9820, "Discount": "0.072", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 599, "Product": "Eco Max", "Amount": 2370, "Discount": "0.052", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 600, "Product": "Eco Max", "Amount": 1920, "Discount": "0.232", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Global Services", }, { "Id": 601, "Product": "Eco Supreme", "Amount": 3300, "Discount": "0.35", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 602, "Product": "Eco Max", "Amount": 4630, "Discount": "0.148", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 603, "Product": "Eco Supreme", "Amount": 1840, "Discount": "0.08", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 604, "Product": "SolarMax", "Amount": 8590, "Discount": "0.1822222222222222222222222222", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 605, "Product": "SolarMax", "Amount": 3860, "Discount": "0.2844444444444444444444444444", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 606, "Product": "SolarOne", "Amount": 4100, "Discount": "0.2666666666666666666666666667", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Green Energy Inc", }, { "Id": 607, "Product": "Eco Max", "Amount": 7090, "Discount": "0.164", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 608, "Product": "SolarMax", "Amount": 6570, "Discount": "0.08", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 609, "Product": "Eco Max", "Amount": 2120, "Discount": "0.152", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 610, "Product": "Eco Max", "Amount": 4690, "Discount": "0.124", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 611, "Product": "Eco Supreme", "Amount": 7350, "Discount": "0.325", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 612, "Product": "Eco Max", "Amount": 4750, "Discount": "0.1", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 613, "Product": "Eco Max", "Amount": 1940, "Discount": "0.224", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 614, "Product": "Eco Max", "Amount": 7380, "Discount": "0.048", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 615, "Product": "Eco Supreme", "Amount": 7290, "Discount": "0.355", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Energy Systems", }, { "Id": 616, "Product": "EnviroCare", "Amount": 4830, "Discount": "0.24", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 617, "Product": "Eco Supreme", "Amount": 7400, "Discount": "0.3", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 618, "Product": "Eco Max", "Amount": 9360, "Discount": "0.256", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 619, "Product": "SolarOne", "Amount": 4000, "Discount": "0.3333333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Market Eco", }, { "Id": 620, "Product": "Eco Max", "Amount": 4750, "Discount": "0.1", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 621, "Product": "Eco Supreme", "Amount": 7690, "Discount": "0.155", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 622, "Product": "SolarMax", "Amount": 8550, "Discount": "0.2", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 623, "Product": "SolarMax", "Amount": 8310, "Discount": "0.3066666666666666666666666667", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Retail", "Customer": "Health Plus Inc", }, { "Id": 624, "Product": "Eco Supreme", "Amount": 1890, "Discount": "0.055", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Renewable Supplies", }, { "Id": 625, "Product": "EnviroCare", "Amount": 3130, "Discount": "0.2114285714285714285714285714", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 626, "Product": "Eco Max", "Amount": 4860, "Discount": "0.056", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 627, "Product": "EnviroCare", "Amount": 6400, "Discount": "0.3428571428571428571428571429", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 628, "Product": "Eco Max", "Amount": 1780, "Discount": "0.288", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 629, "Product": "SolarMax", "Amount": 1810, "Discount": "0.1955555555555555555555555556", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 630, "Product": "Eco Supreme", "Amount": 5270, "Discount": "0.365", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 631, "Product": "Eco Max", "Amount": 4370, "Discount": "0.252", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Solar Warehouse", }, { "Id": 632, "Product": "SolarMax", "Amount": 4130, "Discount": "0.1644444444444444444444444444", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 633, "Product": "SolarOne", "Amount": 2350, "Discount": "0.4333333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 634, "Product": "Eco Max", "Amount": 7120, "Discount": "0.152", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 635, "Product": "Eco Max", "Amount": 4470, "Discount": "0.212", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 636, "Product": "Eco Max", "Amount": 6930, "Discount": "0.228", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Building Management Inc", }, { "Id": 637, "Product": "Eco Max", "Amount": 9950, "Discount": "0.02", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 638, "Product": "SolarMax", "Amount": 6180, "Discount": "0.2533333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 639, "Product": "Eco Max", "Amount": 2310, "Discount": "0.076", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 640, "Product": "SolarMax", "Amount": 1840, "Discount": "0.1822222222222222222222222222", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 641, "Product": "EnviroCare", "Amount": 4840, "Discount": "0.2342857142857142857142857143", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 642, "Product": "Eco Supreme", "Amount": 5840, "Discount": "0.08", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 643, "Product": "Eco Max", "Amount": 6980, "Discount": "0.208", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 644, "Product": "EnviroCare", "Amount": 1520, "Discount": "0.1314285714285714285714285714", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Green Energy Inc", }, { "Id": 645, "Product": "SolarMax", "Amount": 8640, "Discount": "0.16", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 646, "Product": "Eco Max", "Amount": 9850, "Discount": "0.06", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 647, "Product": "EnviroCare", "Amount": 4540, "Discount": "0.4057142857142857142857142857", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 648, "Product": "SolarMax", "Amount": 2170, "Discount": "0.0355555555555555555555555556", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 649, "Product": "EnviroCare", "Amount": 6950, "Discount": "0.0285714285714285714285714286", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Retail", "Customer": "Market Eco", }, { "Id": 650, "Product": "Eco Max", "Amount": 4860, "Discount": "0.056", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 651, "Product": "Eco Max", "Amount": 2320, "Discount": "0.072", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 652, "Product": "Eco Max", "Amount": 4570, "Discount": "0.172", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Retail", "Customer": "Market Eco", }, { "Id": 653, "Product": "Eco Max", "Amount": 2320, "Discount": "0.072", "SaleDate": "2024-05-12T00:00:00", "Region": "Africa", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 654, "Product": "Eco Max", "Amount": 7380, "Discount": "0.048", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Building Management Inc", }, { "Id": 655, "Product": "Eco Supreme", "Amount": 3690, "Discount": "0.155", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Retail", "Customer": "Supply Warehous", }, { "Id": 656, "Product": "SolarMax", "Amount": 6070, "Discount": "0.3022222222222222222222222222", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Retail", "Customer": "Apollo Inc", }, { "Id": 657, "Product": "Eco Max", "Amount": 2220, "Discount": "0.112", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 658, "Product": "SolarMax", "Amount": 6600, "Discount": "0.0666666666666666666666666667", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 659, "Product": "Eco Max", "Amount": 1850, "Discount": "0.26", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 660, "Product": "Eco Supreme", "Amount": 3890, "Discount": "0.055", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 661, "Product": "Eco Max", "Amount": 4560, "Discount": "0.176", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 662, "Product": "Eco Max", "Amount": 9360, "Discount": "0.256", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 663, "Product": "Eco Max", "Amount": 1980, "Discount": "0.208", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 664, "Product": "EnviroCare", "Amount": 4870, "Discount": "0.2171428571428571428571428571", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 665, "Product": "Eco Supreme", "Amount": 7640, "Discount": "0.18", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 666, "Product": "EnviroCare", "Amount": 6920, "Discount": "0.0457142857142857142857142857", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "Columbia Solar", }, { "Id": 667, "Product": "Eco Max", "Amount": 2400, "Discount": "0.04", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 668, "Product": "Eco Max", "Amount": 1990, "Discount": "0.204", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Get Solar Inc", }, { "Id": 669, "Product": "Eco Max", "Amount": 1770, "Discount": "0.292", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 670, "Product": "SolarMax", "Amount": 6580, "Discount": "0.0755555555555555555555555556", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 671, "Product": "SolarMax", "Amount": 4210, "Discount": "0.1288888888888888888888888889", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 672, "Product": "SolarMax", "Amount": 1730, "Discount": "0.2311111111111111111111111111", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 673, "Product": "SolarMax", "Amount": 4070, "Discount": "0.1911111111111111111111111111", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Mercury Solar", }, { "Id": 674, "Product": "Eco Supreme", "Amount": 3530, "Discount": "0.235", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 675, "Product": "Eco Max", "Amount": 4730, "Discount": "0.108", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Retail", "Customer": "Health Plus Inc", }, { "Id": 676, "Product": "Eco Max", "Amount": 7340, "Discount": "0.064", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Mercury Solar", }, { "Id": 677, "Product": "SolarMax", "Amount": 8510, "Discount": "0.2177777777777777777777777778", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 678, "Product": "Eco Max", "Amount": 9800, "Discount": "0.08", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 679, "Product": "Eco Supreme", "Amount": 5750, "Discount": "0.125", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 680, "Product": "Eco Max", "Amount": 9490, "Discount": "0.204", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 681, "Product": "Eco Max", "Amount": 6950, "Discount": "0.22", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 682, "Product": "SolarMax", "Amount": 1730, "Discount": "0.2311111111111111111111111111", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Smith & Co", }, { "Id": 683, "Product": "Eco Max", "Amount": 9950, "Discount": "0.02", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 684, "Product": "Eco Max", "Amount": 7050, "Discount": "0.18", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 685, "Product": "EnviroCare", "Amount": 3130, "Discount": "0.2114285714285714285714285714", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Retail", "Customer": "Global Services", }, { "Id": 686, "Product": "Eco Max", "Amount": 6990, "Discount": "0.204", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Energy", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 687, "Product": "Eco Max", "Amount": 2320, "Discount": "0.072", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 688, "Product": "SolarMax", "Amount": 6520, "Discount": "0.1022222222222222222222222222", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 689, "Product": "SolarMax", "Amount": 1600, "Discount": "0.2888888888888888888888888889", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 690, "Product": "Eco Max", "Amount": 2160, "Discount": "0.136", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 691, "Product": "Eco Max", "Amount": 9440, "Discount": "0.224", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 692, "Product": "Eco Max", "Amount": 6950, "Discount": "0.22", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 693, "Product": "EnviroCare", "Amount": 6310, "Discount": "0.3942857142857142857142857143", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Columbia Solar", }, { "Id": 694, "Product": "Eco Max", "Amount": 9860, "Discount": "0.056", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 695, "Product": "Eco Max", "Amount": 2090, "Discount": "0.164", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 696, "Product": "Eco Supreme", "Amount": 5820, "Discount": "0.09", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 697, "Product": "Eco Supreme", "Amount": 5290, "Discount": "0.355", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 698, "Product": "Eco Max", "Amount": 2130, "Discount": "0.148", "SaleDate": "2024-05-12T00:00:00", "Region": "Africa", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 699, "Product": "SolarMax", "Amount": 1580, "Discount": "0.2977777777777777777777777778", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Building Management Inc", }, { "Id": 700, "Product": "EnviroCare Max", "Amount": 8350, "Discount": "0.0178571428571428571428571429", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 701, "Product": "EnviroCare", "Amount": 3200, "Discount": "0.1714285714285714285714285714", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 702, "Product": "Eco Max", "Amount": 9360, "Discount": "0.256", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 703, "Product": "Eco Supreme", "Amount": 3920, "Discount": "0.04", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Retail", "Customer": "Solar Warehouse", }, { "Id": 704, "Product": "Eco Max", "Amount": 1820, "Discount": "0.272", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Global Services", }, { "Id": 705, "Product": "Eco Max", "Amount": 2300, "Discount": "0.08", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "Supply Warehous", }, { "Id": 706, "Product": "Eco Max", "Amount": 4440, "Discount": "0.224", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 707, "Product": "Eco Max", "Amount": 2010, "Discount": "0.196", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 708, "Product": "Eco Max", "Amount": 1840, "Discount": "0.264", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Mercury Solar", }, { "Id": 709, "Product": "Eco Max", "Amount": 7090, "Discount": "0.164", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 710, "Product": "SolarOne", "Amount": 2750, "Discount": "0.1666666666666666666666666667", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 711, "Product": "Eco Max", "Amount": 4640, "Discount": "0.144", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Retail", "Customer": "Gemini Stores", }, { "Id": 712, "Product": "Eco Max", "Amount": 9290, "Discount": "0.284", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 713, "Product": "Eco Supreme", "Amount": 5620, "Discount": "0.19", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 714, "Product": "Eco Max", "Amount": 4690, "Discount": "0.124", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 715, "Product": "Eco Supreme", "Amount": 3350, "Discount": "0.325", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 716, "Product": "Eco Supreme", "Amount": 3680, "Discount": "0.16", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "McCord Builders", }, { "Id": 717, "Product": "EnviroCare", "Amount": 5100, "Discount": "0.0857142857142857142857142857", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 718, "Product": "Eco Max", "Amount": 9880, "Discount": "0.048", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 719, "Product": "Eco Supreme", "Amount": 7390, "Discount": "0.305", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 720, "Product": "EnviroCare", "Amount": 3210, "Discount": "0.1657142857142857142857142857", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 721, "Product": "SolarMax", "Amount": 6340, "Discount": "0.1822222222222222222222222222", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Consultants", "Customer": "Solar Warehouse", }, { "Id": 722, "Product": "Eco Max", "Amount": 4530, "Discount": "0.188", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Green Energy Inc", }, { "Id": 723, "Product": "Eco Max", "Amount": 4650, "Discount": "0.14", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 724, "Product": "Eco Max", "Amount": 9370, "Discount": "0.252", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Columbia Solar", }, { "Id": 725, "Product": "SolarMax", "Amount": 6420, "Discount": "0.1466666666666666666666666667", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 726, "Product": "Eco Max", "Amount": 9820, "Discount": "0.072", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 727, "Product": "Eco Max", "Amount": 4860, "Discount": "0.056", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 728, "Product": "Eco Max", "Amount": 2280, "Discount": "0.088", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 729, "Product": "SolarOne", "Amount": 5850, "Discount": "0.1", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Columbia Solar", }, { "Id": 730, "Product": "Eco Max", "Amount": 7430, "Discount": "0.028", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 731, "Product": "Eco Max", "Amount": 7230, "Discount": "0.108", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 732, "Product": "Eco Max", "Amount": 6780, "Discount": "0.288", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 733, "Product": "Eco Max", "Amount": 2020, "Discount": "0.192", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 734, "Product": "SolarMax", "Amount": 6560, "Discount": "0.0844444444444444444444444444", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 735, "Product": "Eco Max", "Amount": 9810, "Discount": "0.076", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Energy", "Channel": "VARs", "Customer": "Green Energy Inc", }, { "Id": 736, "Product": "Eco Supreme", "Amount": 3870, "Discount": "0.065", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 737, "Product": "SolarOne", "Amount": 5690, "Discount": "0.2066666666666666666666666667", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Global Services", }, { "Id": 738, "Product": "SolarOne", "Amount": 1030, "Discount": "0.3133333333333333333333333333", "SaleDate": "2024-05-12T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 739, "Product": "Eco Max", "Amount": 9750, "Discount": "0.1", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 740, "Product": "Eco Max", "Amount": 6800, "Discount": "0.28", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 741, "Product": "Eco Supreme", "Amount": 3840, "Discount": "0.08", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 742, "Product": "Eco Max", "Amount": 2430, "Discount": "0.028", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 743, "Product": "Eco Supreme", "Amount": 3890, "Discount": "0.055", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 744, "Product": "Eco Max", "Amount": 6980, "Discount": "0.208", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Columbia Solar", }, { "Id": 745, "Product": "Eco Max", "Amount": 7340, "Discount": "0.064", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 746, "Product": "Eco Max", "Amount": 6760, "Discount": "0.296", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 747, "Product": "Eco Supreme", "Amount": 5680, "Discount": "0.16", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 748, "Product": "Eco Max", "Amount": 7350, "Discount": "0.06", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 749, "Product": "Eco Max", "Amount": 9440, "Discount": "0.224", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 750, "Product": "Eco Max", "Amount": 4900, "Discount": "0.04", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 751, "Product": "SolarMax", "Amount": 6480, "Discount": "0.12", "SaleDate": "2024-05-12T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 752, "Product": "Eco Max", "Amount": 4270, "Discount": "0.292", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 753, "Product": "Eco Max", "Amount": 9890, "Discount": "0.044", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 754, "Product": "Eco Supreme", "Amount": 3410, "Discount": "0.295", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 755, "Product": "SolarMax", "Amount": 1780, "Discount": "0.2088888888888888888888888889", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 756, "Product": "Eco Max", "Amount": 2010, "Discount": "0.196", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 757, "Product": "Eco Max", "Amount": 7450, "Discount": "0.02", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 758, "Product": "Eco Supreme", "Amount": 7510, "Discount": "0.245", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 759, "Product": "Eco Max", "Amount": 6760, "Discount": "0.296", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 760, "Product": "Eco Supreme", "Amount": 3350, "Discount": "0.325", "SaleDate": "2024-05-12T00:00:00", "Region": "Asia", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 761, "Product": "Eco Max", "Amount": 4290, "Discount": "0.284", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 762, "Product": "Eco Max", "Amount": 4490, "Discount": "0.204", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 763, "Product": "EnviroCare", "Amount": 1520, "Discount": "0.1314285714285714285714285714", "SaleDate": "2024-05-12T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Global Services", }, { "Id": 764, "Product": "EnviroCare", "Amount": 3450, "Discount": "0.0285714285714285714285714286", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 765, "Product": "SolarOne", "Amount": 1440, "Discount": "0.04", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 766, "Product": "Eco Supreme", "Amount": 5940, "Discount": "0.03", "SaleDate": "2024-05-12T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 767, "Product": "Eco Supreme", "Amount": 7400, "Discount": "0.3", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 768, "Product": "SolarMax", "Amount": 3980, "Discount": "0.2311111111111111111111111111", "SaleDate": "2024-05-12T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 769, "Product": "Eco Max", "Amount": 9490, "Discount": "0.204", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 770, "Product": "SolarMax", "Amount": 4000, "Discount": "0.2222222222222222222222222222", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 771, "Product": "Eco Max", "Amount": 7360, "Discount": "0.056", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 772, "Product": "EnviroCare", "Amount": 1310, "Discount": "0.2514285714285714285714285714", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Columbia Solar", }, { "Id": 773, "Product": "Eco Max", "Amount": 9890, "Discount": "0.044", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 774, "Product": "Eco Supreme", "Amount": 1410, "Discount": "0.295", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 775, "Product": "Eco Max", "Amount": 7320, "Discount": "0.072", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 776, "Product": "Eco Supreme", "Amount": 5580, "Discount": "0.21", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 777, "Product": "Eco Supreme", "Amount": 7340, "Discount": "0.33", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 778, "Product": "Eco Max", "Amount": 7300, "Discount": "0.08", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 779, "Product": "SolarMax", "Amount": 2080, "Discount": "0.0755555555555555555555555556", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 780, "Product": "Eco Max", "Amount": 9810, "Discount": "0.076", "SaleDate": "2024-05-13T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 781, "Product": "Eco Max", "Amount": 2390, "Discount": "0.044", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Health Plus Inc", }, { "Id": 782, "Product": "SolarMax", "Amount": 8760, "Discount": "0.1066666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 783, "Product": "Eco Max", "Amount": 6800, "Discount": "0.28", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 784, "Product": "SolarMax", "Amount": 2040, "Discount": "0.0933333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 785, "Product": "SolarOne", "Amount": 960, "Discount": "0.36", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 786, "Product": "EnviroCare", "Amount": 3290, "Discount": "0.12", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Green Energy Inc", }, { "Id": 787, "Product": "Eco Supreme", "Amount": 7400, "Discount": "0.3", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 788, "Product": "Eco Max", "Amount": 7300, "Discount": "0.08", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 789, "Product": "Eco Supreme", "Amount": 1420, "Discount": "0.29", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 790, "Product": "Eco Max", "Amount": 9880, "Discount": "0.048", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 791, "Product": "Eco Max", "Amount": 4480, "Discount": "0.208", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 792, "Product": "Eco Supreme", "Amount": 5470, "Discount": "0.265", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 793, "Product": "Eco Supreme", "Amount": 1740, "Discount": "0.13", "SaleDate": "2024-05-13T00:00:00", "Region": "Africa", "Sector": "Banking", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 794, "Product": "SolarOne", "Amount": 4420, "Discount": "0.0533333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 795, "Product": "SolarOne", "Amount": 1430, "Discount": "0.0466666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 796, "Product": "Eco Max", "Amount": 2090, "Discount": "0.164", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 797, "Product": "Eco Max", "Amount": 9690, "Discount": "0.124", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Arthur & Sons", }, { "Id": 798, "Product": "Eco Supreme", "Amount": 5540, "Discount": "0.23", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 799, "Product": "Eco Max", "Amount": 9330, "Discount": "0.268", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 800, "Product": "Eco Supreme", "Amount": 1660, "Discount": "0.17", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 801, "Product": "SolarOne", "Amount": 1400, "Discount": "0.0666666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 802, "Product": "Eco Max", "Amount": 6800, "Discount": "0.28", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Gemini Stores", }, { "Id": 803, "Product": "Eco Supreme", "Amount": 3540, "Discount": "0.23", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 804, "Product": "Eco Supreme", "Amount": 3400, "Discount": "0.3", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 805, "Product": "Eco Max", "Amount": 4860, "Discount": "0.056", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 806, "Product": "Eco Max", "Amount": 7080, "Discount": "0.168", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 807, "Product": "SolarMax", "Amount": 1810, "Discount": "0.1955555555555555555555555556", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Renewable Supplies", }, { "Id": 808, "Product": "EnviroCare", "Amount": 4660, "Discount": "0.3371428571428571428571428571", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 809, "Product": "EnviroCare Max", "Amount": 2440, "Discount": "0.1285714285714285714285714286", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 810, "Product": "Eco Max", "Amount": 2310, "Discount": "0.076", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 811, "Product": "Eco Supreme", "Amount": 5910, "Discount": "0.045", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 812, "Product": "Eco Max", "Amount": 9810, "Discount": "0.076", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 813, "Product": "Eco Max", "Amount": 4270, "Discount": "0.292", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Retail", "Customer": "Apollo Inc", }, { "Id": 814, "Product": "Eco Max", "Amount": 7130, "Discount": "0.148", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 815, "Product": "SolarMax", "Amount": 8650, "Discount": "0.1555555555555555555555555556", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 816, "Product": "EnviroCare", "Amount": 1700, "Discount": "0.0285714285714285714285714286", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 817, "Product": "Eco Supreme", "Amount": 5510, "Discount": "0.245", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 818, "Product": "Eco Supreme", "Amount": 3910, "Discount": "0.045", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Smith & Co", }, { "Id": 819, "Product": "Eco Supreme", "Amount": 1420, "Discount": "0.29", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Columbia Solar", }, { "Id": 820, "Product": "Eco Max", "Amount": 9420, "Discount": "0.232", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 821, "Product": "Eco Max", "Amount": 4440, "Discount": "0.224", "SaleDate": "2024-05-13T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "Retail", "Customer": "Solar Warehouse", }, { "Id": 822, "Product": "Eco Max", "Amount": 2340, "Discount": "0.064", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 823, "Product": "SolarMax", "Amount": 3790, "Discount": "0.3155555555555555555555555556", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 824, "Product": "SolarOne", "Amount": 3860, "Discount": "0.4266666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 825, "Product": "Eco Max", "Amount": 7350, "Discount": "0.06", "SaleDate": "2024-05-13T00:00:00", "Region": "Africa", "Sector": "Telecom", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 826, "Product": "SolarMax", "Amount": 8350, "Discount": "0.2888888888888888888888888889", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 827, "Product": "SolarMax", "Amount": 6040, "Discount": "0.3155555555555555555555555556", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 828, "Product": "Eco Max", "Amount": 9740, "Discount": "0.104", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 829, "Product": "Eco Max", "Amount": 4340, "Discount": "0.264", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 830, "Product": "Eco Max", "Amount": 9370, "Discount": "0.252", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 831, "Product": "Eco Supreme", "Amount": 7780, "Discount": "0.11", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 832, "Product": "Eco Supreme", "Amount": 7750, "Discount": "0.125", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 833, "Product": "Eco Max", "Amount": 9950, "Discount": "0.02", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 834, "Product": "Eco Supreme", "Amount": 1440, "Discount": "0.28", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 835, "Product": "Eco Max", "Amount": 1850, "Discount": "0.26", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 836, "Product": "Eco Supreme", "Amount": 5720, "Discount": "0.14", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Smith & Co", }, { "Id": 837, "Product": "Eco Supreme", "Amount": 1700, "Discount": "0.15", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 838, "Product": "SolarMax", "Amount": 8860, "Discount": "0.0622222222222222222222222222", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 839, "Product": "Eco Max", "Amount": 1760, "Discount": "0.296", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 840, "Product": "SolarOne", "Amount": 4360, "Discount": "0.0933333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 841, "Product": "Eco Supreme", "Amount": 7690, "Discount": "0.155", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 842, "Product": "Eco Max", "Amount": 6770, "Discount": "0.292", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "McCord Builders", }, { "Id": 843, "Product": "Eco Max", "Amount": 4540, "Discount": "0.184", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 844, "Product": "Eco Max", "Amount": 4720, "Discount": "0.112", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 845, "Product": "Eco Max", "Amount": 4390, "Discount": "0.244", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 846, "Product": "Eco Supreme", "Amount": 3810, "Discount": "0.095", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 847, "Product": "SolarMax", "Amount": 8900, "Discount": "0.0444444444444444444444444444", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 848, "Product": "Eco Supreme", "Amount": 5790, "Discount": "0.105", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 849, "Product": "Eco Max", "Amount": 9740, "Discount": "0.104", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 850, "Product": "Eco Max", "Amount": 2320, "Discount": "0.072", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 851, "Product": "SolarMax", "Amount": 8700, "Discount": "0.1333333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 852, "Product": "Eco Max", "Amount": 2110, "Discount": "0.156", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "Columbia Solar", }, { "Id": 853, "Product": "Eco Supreme", "Amount": 1560, "Discount": "0.22", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 854, "Product": "Eco Supreme", "Amount": 7460, "Discount": "0.27", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 855, "Product": "Eco Max", "Amount": 9310, "Discount": "0.276", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 856, "Product": "Eco Max", "Amount": 4510, "Discount": "0.196", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 857, "Product": "Eco Supreme", "Amount": 7830, "Discount": "0.085", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Building Management Inc", }, { "Id": 858, "Product": "SolarMax", "Amount": 8340, "Discount": "0.2933333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 859, "Product": "Eco Max", "Amount": 6940, "Discount": "0.224", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 860, "Product": "SolarMax", "Amount": 4310, "Discount": "0.0844444444444444444444444444", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 861, "Product": "Eco Max", "Amount": 9810, "Discount": "0.076", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 862, "Product": "Eco Max", "Amount": 7350, "Discount": "0.06", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 863, "Product": "SolarMax", "Amount": 8600, "Discount": "0.1777777777777777777777777778", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 864, "Product": "Eco Max", "Amount": 4610, "Discount": "0.156", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 865, "Product": "EnviroCare", "Amount": 2900, "Discount": "0.3428571428571428571428571429", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 866, "Product": "Eco Supreme", "Amount": 7370, "Discount": "0.315", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 867, "Product": "SolarMax", "Amount": 6650, "Discount": "0.0444444444444444444444444444", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Renewable Supplies", }, { "Id": 868, "Product": "SolarMax", "Amount": 8740, "Discount": "0.1155555555555555555555555556", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Renewable Supplies", }, { "Id": 869, "Product": "Eco Max", "Amount": 7100, "Discount": "0.16", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "Arthur & Sons", }, { "Id": 870, "Product": "SolarMax", "Amount": 4200, "Discount": "0.1333333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Building Management Inc", }, { "Id": 871, "Product": "Eco Supreme", "Amount": 1330, "Discount": "0.335", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 872, "Product": "Eco Supreme", "Amount": 3480, "Discount": "0.26", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Health Plus Inc", }, { "Id": 873, "Product": "Eco Max", "Amount": 9420, "Discount": "0.232", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 874, "Product": "Eco Max", "Amount": 2060, "Discount": "0.176", "SaleDate": "2024-05-13T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 875, "Product": "SolarMax", "Amount": 3910, "Discount": "0.2622222222222222222222222222", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 876, "Product": "Eco Max", "Amount": 7000, "Discount": "0.2", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Green Energy Inc", }, { "Id": 877, "Product": "SolarMax", "Amount": 6170, "Discount": "0.2577777777777777777777777778", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 878, "Product": "SolarMax", "Amount": 4380, "Discount": "0.0533333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 879, "Product": "Eco Supreme", "Amount": 3850, "Discount": "0.075", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 880, "Product": "SolarMax", "Amount": 6400, "Discount": "0.1555555555555555555555555556", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 881, "Product": "Eco Max", "Amount": 2160, "Discount": "0.136", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 882, "Product": "Eco Max", "Amount": 4770, "Discount": "0.092", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 883, "Product": "Eco Max", "Amount": 6880, "Discount": "0.248", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 884, "Product": "Eco Max", "Amount": 9520, "Discount": "0.192", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 885, "Product": "Eco Supreme", "Amount": 3910, "Discount": "0.045", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 886, "Product": "Eco Max", "Amount": 4820, "Discount": "0.072", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 887, "Product": "Eco Max", "Amount": 9380, "Discount": "0.248", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 888, "Product": "EnviroCare", "Amount": 4540, "Discount": "0.4057142857142857142857142857", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 889, "Product": "Eco Supreme", "Amount": 7730, "Discount": "0.135", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Columbia Solar", }, { "Id": 890, "Product": "SolarMax", "Amount": 8670, "Discount": "0.1466666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 891, "Product": "SolarMax", "Amount": 6140, "Discount": "0.2711111111111111111111111111", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 892, "Product": "Eco Supreme", "Amount": 3550, "Discount": "0.225", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 893, "Product": "Eco Supreme", "Amount": 3780, "Discount": "0.11", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Retail", "Customer": "Global Services", }, { "Id": 894, "Product": "Eco Supreme", "Amount": 7280, "Discount": "0.36", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 895, "Product": "Eco Max", "Amount": 6910, "Discount": "0.236", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 896, "Product": "Eco Max", "Amount": 4300, "Discount": "0.28", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 897, "Product": "SolarMax", "Amount": 1550, "Discount": "0.3111111111111111111111111111", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 898, "Product": "Eco Max", "Amount": 6820, "Discount": "0.272", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 899, "Product": "SolarOne", "Amount": 1000, "Discount": "0.3333333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Get Solar Inc", }, { "Id": 900, "Product": "Eco Max", "Amount": 7060, "Discount": "0.176", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 901, "Product": "SolarMax", "Amount": 8420, "Discount": "0.2577777777777777777777777778", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Market Eco", }, { "Id": 902, "Product": "Eco Supreme", "Amount": 5580, "Discount": "0.21", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 903, "Product": "Eco Supreme", "Amount": 1820, "Discount": "0.09", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 904, "Product": "Eco Max", "Amount": 7130, "Discount": "0.148", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 905, "Product": "Eco Max", "Amount": 2360, "Discount": "0.056", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 906, "Product": "Eco Max", "Amount": 9730, "Discount": "0.108", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Retail", "Customer": "Health Plus Inc", }, { "Id": 907, "Product": "Eco Max", "Amount": 6850, "Discount": "0.26", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 908, "Product": "Eco Max", "Amount": 7140, "Discount": "0.144", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 909, "Product": "SolarMax", "Amount": 4130, "Discount": "0.1644444444444444444444444444", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 910, "Product": "Eco Max", "Amount": 2060, "Discount": "0.176", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 911, "Product": "Eco Max", "Amount": 4560, "Discount": "0.176", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 912, "Product": "Eco Max", "Amount": 4730, "Discount": "0.108", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 913, "Product": "SolarMax", "Amount": 1530, "Discount": "0.32", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 914, "Product": "SolarMax", "Amount": 1560, "Discount": "0.3066666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 915, "Product": "Eco Max", "Amount": 4510, "Discount": "0.196", "SaleDate": "2024-05-13T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 916, "Product": "SolarOne", "Amount": 2400, "Discount": "0.4", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 917, "Product": "Eco Max", "Amount": 9280, "Discount": "0.288", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 918, "Product": "SolarOne", "Amount": 5460, "Discount": "0.36", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 919, "Product": "Eco Max", "Amount": 2060, "Discount": "0.176", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 920, "Product": "Eco Supreme", "Amount": 5470, "Discount": "0.265", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 921, "Product": "Eco Max", "Amount": 2450, "Discount": "0.02", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 922, "Product": "EnviroCare", "Amount": 6880, "Discount": "0.0685714285714285714285714286", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 923, "Product": "Eco Supreme", "Amount": 7300, "Discount": "0.35", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 924, "Product": "Eco Max", "Amount": 2250, "Discount": "0.1", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Consultants", "Customer": "Columbia Solar", }, { "Id": 925, "Product": "Eco Max", "Amount": 7220, "Discount": "0.112", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 926, "Product": "SolarOne", "Amount": 3770, "Discount": "0.4866666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 927, "Product": "Eco Max", "Amount": 4770, "Discount": "0.092", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 928, "Product": "SolarMax", "Amount": 6590, "Discount": "0.0711111111111111111111111111", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 929, "Product": "Eco Max", "Amount": 4560, "Discount": "0.176", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 930, "Product": "SolarOne", "Amount": 1340, "Discount": "0.1066666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 931, "Product": "Eco Supreme", "Amount": 7430, "Discount": "0.285", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 932, "Product": "Eco Supreme", "Amount": 1730, "Discount": "0.135", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 933, "Product": "Eco Max", "Amount": 7340, "Discount": "0.064", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 934, "Product": "Eco Max", "Amount": 2230, "Discount": "0.108", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Retail", "Customer": "Mercury Solar", }, { "Id": 935, "Product": "Eco Max", "Amount": 4580, "Discount": "0.168", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Retail", "Customer": "Health Plus Inc", }, { "Id": 936, "Product": "Eco Max", "Amount": 2010, "Discount": "0.196", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 937, "Product": "EnviroCare", "Amount": 3370, "Discount": "0.0742857142857142857142857143", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 938, "Product": "Eco Max", "Amount": 4700, "Discount": "0.12", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Direct", "Customer": "Global Services", }, { "Id": 939, "Product": "EnviroCare", "Amount": 1490, "Discount": "0.1485714285714285714285714286", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 940, "Product": "Eco Supreme", "Amount": 1470, "Discount": "0.265", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 941, "Product": "Eco Max", "Amount": 4950, "Discount": "0.02", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 942, "Product": "Eco Max", "Amount": 9400, "Discount": "0.24", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 943, "Product": "SolarMax", "Amount": 4230, "Discount": "0.12", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 944, "Product": "Eco Max", "Amount": 4870, "Discount": "0.052", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 945, "Product": "Eco Max", "Amount": 9950, "Discount": "0.02", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Green Energy Inc", }, { "Id": 946, "Product": "Eco Supreme", "Amount": 7670, "Discount": "0.165", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 947, "Product": "SolarMax", "Amount": 2140, "Discount": "0.0488888888888888888888888889", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 948, "Product": "SolarMax", "Amount": 1830, "Discount": "0.1866666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 949, "Product": "Eco Supreme", "Amount": 3610, "Discount": "0.195", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 950, "Product": "Eco Max", "Amount": 2310, "Discount": "0.076", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 951, "Product": "Eco Max", "Amount": 4730, "Discount": "0.108", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Retail", "Customer": "Environment Solar", }, { "Id": 952, "Product": "Eco Supreme", "Amount": 7410, "Discount": "0.295", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 953, "Product": "Eco Max", "Amount": 2080, "Discount": "0.168", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 954, "Product": "SolarMax", "Amount": 2020, "Discount": "0.1022222222222222222222222222", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Retail", "Customer": "Gemini Stores", }, { "Id": 955, "Product": "Eco Max", "Amount": 7240, "Discount": "0.104", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Building Management Inc", }, { "Id": 956, "Product": "Eco Max", "Amount": 6810, "Discount": "0.276", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 957, "Product": "Eco Max", "Amount": 4350, "Discount": "0.26", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 958, "Product": "SolarMax", "Amount": 1860, "Discount": "0.1733333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 959, "Product": "Eco Max", "Amount": 2360, "Discount": "0.056", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 960, "Product": "EnviroCare", "Amount": 6850, "Discount": "0.0857142857142857142857142857", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 961, "Product": "Eco Supreme", "Amount": 7280, "Discount": "0.36", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 962, "Product": "SolarMax", "Amount": 2120, "Discount": "0.0577777777777777777777777778", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Building Management Inc", }, { "Id": 963, "Product": "Eco Supreme", "Amount": 5350, "Discount": "0.325", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 964, "Product": "Eco Max", "Amount": 4840, "Discount": "0.064", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 965, "Product": "Eco Max", "Amount": 6980, "Discount": "0.208", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 966, "Product": "SolarMax", "Amount": 1860, "Discount": "0.1733333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 967, "Product": "Eco Supreme", "Amount": 5860, "Discount": "0.07", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 968, "Product": "Eco Supreme", "Amount": 5430, "Discount": "0.285", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 969, "Product": "Eco Max", "Amount": 7070, "Discount": "0.172", "SaleDate": "2024-05-13T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 970, "Product": "SolarMax", "Amount": 1840, "Discount": "0.1822222222222222222222222222", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 971, "Product": "SolarMax", "Amount": 3970, "Discount": "0.2355555555555555555555555556", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Green Energy Inc", }, { "Id": 972, "Product": "Eco Supreme", "Amount": 7850, "Discount": "0.075", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Building Management Inc", }, { "Id": 973, "Product": "SolarOne", "Amount": 2870, "Discount": "0.0866666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 974, "Product": "Eco Supreme", "Amount": 7330, "Discount": "0.335", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 975, "Product": "Eco Max", "Amount": 2060, "Discount": "0.176", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Retail", "Customer": "Health Plus Inc", }, { "Id": 976, "Product": "SolarMax", "Amount": 8700, "Discount": "0.1333333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 977, "Product": "SolarMax", "Amount": 8520, "Discount": "0.2133333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 978, "Product": "Eco Max", "Amount": 7360, "Discount": "0.056", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 979, "Product": "Eco Max", "Amount": 7160, "Discount": "0.136", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 980, "Product": "EnviroCare", "Amount": 5140, "Discount": "0.0628571428571428571428571429", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 981, "Product": "Eco Supreme", "Amount": 1530, "Discount": "0.235", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 982, "Product": "Eco Max", "Amount": 4950, "Discount": "0.02", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 983, "Product": "Eco Supreme", "Amount": 5500, "Discount": "0.25", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 984, "Product": "SolarMax", "Amount": 1620, "Discount": "0.28", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 985, "Product": "EnviroCare", "Amount": 1570, "Discount": "0.1028571428571428571428571429", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 986, "Product": "Eco Max", "Amount": 4330, "Discount": "0.268", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 987, "Product": "SolarOne", "Amount": 1000, "Discount": "0.3333333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Solar Warehouse", }, { "Id": 988, "Product": "Eco Supreme", "Amount": 1580, "Discount": "0.21", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 989, "Product": "Eco Supreme", "Amount": 7880, "Discount": "0.06", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 990, "Product": "Eco Supreme", "Amount": 3900, "Discount": "0.05", "SaleDate": "2024-05-13T00:00:00", "Region": "Africa", "Sector": "Telecom", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 991, "Product": "SolarOne", "Amount": 2870, "Discount": "0.0866666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 992, "Product": "Eco Max", "Amount": 2190, "Discount": "0.124", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 993, "Product": "SolarMax", "Amount": 6500, "Discount": "0.1111111111111111111111111111", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 994, "Product": "Eco Max", "Amount": 4570, "Discount": "0.172", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Renewable Supplies", }, { "Id": 995, "Product": "Eco Supreme", "Amount": 1790, "Discount": "0.105", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Solar Warehouse", }, { "Id": 996, "Product": "EnviroCare", "Amount": 3070, "Discount": "0.2457142857142857142857142857", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 997, "Product": "SolarMax", "Amount": 6360, "Discount": "0.1733333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 998, "Product": "Eco Max", "Amount": 4580, "Discount": "0.168", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 999, "Product": "Eco Supreme", "Amount": 1360, "Discount": "0.32", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 1000, "Product": "Eco Supreme", "Amount": 7430, "Discount": "0.285", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 1001, "Product": "SolarMax", "Amount": 6260, "Discount": "0.2177777777777777777777777778", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Renewable Supplies", }, { "Id": 1002, "Product": "SolarMax", "Amount": 2160, "Discount": "0.04", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 1003, "Product": "Eco Supreme", "Amount": 5430, "Discount": "0.285", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 1004, "Product": "Eco Max", "Amount": 4470, "Discount": "0.212", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 1005, "Product": "Eco Supreme", "Amount": 3430, "Discount": "0.285", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 1006, "Product": "SolarMax", "Amount": 8280, "Discount": "0.32", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 1007, "Product": "Eco Max", "Amount": 6780, "Discount": "0.288", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 1008, "Product": "SolarMax", "Amount": 4170, "Discount": "0.1466666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 1009, "Product": "EnviroCare", "Amount": 4990, "Discount": "0.1485714285714285714285714286", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 1010, "Product": "Eco Max", "Amount": 4740, "Discount": "0.104", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 1011, "Product": "Eco Max", "Amount": 7240, "Discount": "0.104", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 1012, "Product": "Eco Max", "Amount": 2350, "Discount": "0.06", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 1013, "Product": "SolarMax", "Amount": 4290, "Discount": "0.0933333333333333333333333333", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 1014, "Product": "Eco Supreme", "Amount": 5310, "Discount": "0.345", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 1015, "Product": "Eco Supreme", "Amount": 3840, "Discount": "0.08", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 1016, "Product": "Eco Max", "Amount": 4400, "Discount": "0.24", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 1017, "Product": "Eco Max", "Amount": 2450, "Discount": "0.02", "SaleDate": "2024-05-13T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 1018, "Product": "Eco Max", "Amount": 9940, "Discount": "0.024", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 1019, "Product": "SolarOne", "Amount": 4190, "Discount": "0.2066666666666666666666666667", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Mercury Solar", }, { "Id": 1020, "Product": "Eco Max", "Amount": 1960, "Discount": "0.216", "SaleDate": "2024-05-13T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 1021, "Product": "Eco Supreme", "Amount": 3320, "Discount": "0.34", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 1022, "Product": "Eco Max", "Amount": 7100, "Discount": "0.16", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 1023, "Product": "Eco Supreme", "Amount": 5360, "Discount": "0.32", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1024, "Product": "Eco Max", "Amount": 7410, "Discount": "0.036", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "McCord Builders", }, { "Id": 1025, "Product": "Eco Max", "Amount": 2290, "Discount": "0.084", "SaleDate": "2024-05-13T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 1026, "Product": "SolarMax", "Amount": 1550, "Discount": "0.3111111111111111111111111111", "SaleDate": "2024-05-13T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 1027, "Product": "SolarMax", "Amount": 1980, "Discount": "0.12", "SaleDate": "2024-05-13T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 1028, "Product": "SolarMax", "Amount": 1720, "Discount": "0.2355555555555555555555555556", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Energy", "Channel": "Resellers", "Customer": "Global Services", }, { "Id": 1029, "Product": "Eco Max", "Amount": 4500, "Discount": "0.2", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 1030, "Product": "SolarMax", "Amount": 8710, "Discount": "0.1288888888888888888888888889", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 1031, "Product": "Eco Max", "Amount": 7110, "Discount": "0.156", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 1032, "Product": "Eco Max", "Amount": 4860, "Discount": "0.056", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 1033, "Product": "Eco Supreme", "Amount": 7470, "Discount": "0.265", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Health Plus Inc", }, { "Id": 1034, "Product": "Eco Max", "Amount": 6810, "Discount": "0.276", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 1035, "Product": "SolarOne", "Amount": 5670, "Discount": "0.22", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Retail", "Customer": "Environment Solar", }, { "Id": 1036, "Product": "Eco Supreme", "Amount": 7620, "Discount": "0.19", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 1037, "Product": "EnviroCare", "Amount": 3350, "Discount": "0.0857142857142857142857142857", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 1038, "Product": "Eco Supreme", "Amount": 1460, "Discount": "0.27", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 1039, "Product": "Eco Supreme", "Amount": 3630, "Discount": "0.185", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 1040, "Product": "Eco Max", "Amount": 7150, "Discount": "0.14", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Global Services", }, { "Id": 1041, "Product": "EnviroCare", "Amount": 3320, "Discount": "0.1028571428571428571428571429", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 1042, "Product": "SolarOne", "Amount": 3870, "Discount": "0.42", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 1043, "Product": "Eco Max", "Amount": 6760, "Discount": "0.296", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 1044, "Product": "Eco Supreme", "Amount": 5620, "Discount": "0.19", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 1045, "Product": "SolarOne", "Amount": 920, "Discount": "0.3866666666666666666666666667", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Smith & Co", }, { "Id": 1046, "Product": "Eco Max", "Amount": 9420, "Discount": "0.232", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 1047, "Product": "Eco Max", "Amount": 9830, "Discount": "0.068", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 1048, "Product": "Eco Supreme", "Amount": 3380, "Discount": "0.31", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 1049, "Product": "SolarMax", "Amount": 1670, "Discount": "0.2577777777777777777777777778", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 1050, "Product": "Eco Max", "Amount": 9830, "Discount": "0.068", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Mercury Solar", }, { "Id": 1051, "Product": "SolarOne", "Amount": 3870, "Discount": "0.42", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 1052, "Product": "Eco Max", "Amount": 7240, "Discount": "0.104", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 1053, "Product": "SolarMax", "Amount": 6480, "Discount": "0.12", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 1054, "Product": "Eco Max", "Amount": 2130, "Discount": "0.148", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Green Energy Inc", }, { "Id": 1055, "Product": "Eco Max", "Amount": 4360, "Discount": "0.256", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Retail", "Customer": "Green Energy Inc", }, { "Id": 1056, "Product": "SolarMax", "Amount": 8700, "Discount": "0.1333333333333333333333333333", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 1057, "Product": "SolarMax", "Amount": 3770, "Discount": "0.3244444444444444444444444444", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 1058, "Product": "Eco Supreme", "Amount": 5490, "Discount": "0.255", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Green Energy Inc", }, { "Id": 1059, "Product": "Eco Max", "Amount": 7160, "Discount": "0.136", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 1060, "Product": "Eco Max", "Amount": 1800, "Discount": "0.28", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1061, "Product": "SolarMax", "Amount": 1730, "Discount": "0.2311111111111111111111111111", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 1062, "Product": "Eco Max", "Amount": 7180, "Discount": "0.128", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 1063, "Product": "SolarMax", "Amount": 8380, "Discount": "0.2755555555555555555555555556", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Green Energy Inc", }, { "Id": 1064, "Product": "Eco Supreme", "Amount": 7360, "Discount": "0.32", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Retail", "Customer": "Market Eco", }, { "Id": 1065, "Product": "EnviroCare", "Amount": 6820, "Discount": "0.1028571428571428571428571429", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 1066, "Product": "Eco Supreme", "Amount": 5510, "Discount": "0.245", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Arthur & Sons", }, { "Id": 1067, "Product": "Eco Max", "Amount": 4540, "Discount": "0.184", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 1068, "Product": "EnviroCare", "Amount": 1670, "Discount": "0.0457142857142857142857142857", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 1069, "Product": "Eco Max", "Amount": 9730, "Discount": "0.108", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Smith & Co", }, { "Id": 1070, "Product": "EnviroCare Max", "Amount": 10910, "Discount": "0.1035714285714285714285714286", "SaleDate": "2024-05-14T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 1071, "Product": "Eco Max", "Amount": 4820, "Discount": "0.072", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 1072, "Product": "SolarOne", "Amount": 5530, "Discount": "0.3133333333333333333333333333", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 1073, "Product": "Eco Supreme", "Amount": 7760, "Discount": "0.12", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 1074, "Product": "Eco Supreme", "Amount": 1690, "Discount": "0.155", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Smith & Co", }, { "Id": 1075, "Product": "EnviroCare", "Amount": 1210, "Discount": "0.3085714285714285714285714286", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 1076, "Product": "SolarOne", "Amount": 1340, "Discount": "0.1066666666666666666666666667", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Columbia Solar", }, { "Id": 1077, "Product": "Eco Max", "Amount": 7450, "Discount": "0.02", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Smith & Co", }, { "Id": 1078, "Product": "Eco Supreme", "Amount": 7660, "Discount": "0.17", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 1079, "Product": "SolarMax", "Amount": 1900, "Discount": "0.1555555555555555555555555556", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 1080, "Product": "Eco Max", "Amount": 9420, "Discount": "0.232", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 1081, "Product": "Eco Max", "Amount": 7140, "Discount": "0.144", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Retail", "Customer": "Solar Warehouse", }, { "Id": 1082, "Product": "SolarMax", "Amount": 8540, "Discount": "0.2044444444444444444444444444", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 1083, "Product": "Eco Max", "Amount": 9780, "Discount": "0.088", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Retail", "Customer": "McCord Builders", }, { "Id": 1084, "Product": "Eco Supreme", "Amount": 7790, "Discount": "0.105", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 1085, "Product": "Eco Max", "Amount": 9890, "Discount": "0.044", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1086, "Product": "Eco Supreme", "Amount": 7480, "Discount": "0.26", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Mercury Solar", }, { "Id": 1087, "Product": "SolarMax", "Amount": 3910, "Discount": "0.2622222222222222222222222222", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 1088, "Product": "SolarMax", "Amount": 2130, "Discount": "0.0533333333333333333333333333", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 1089, "Product": "Eco Max", "Amount": 9550, "Discount": "0.18", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 1090, "Product": "SolarMax", "Amount": 3770, "Discount": "0.3244444444444444444444444444", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Supply Warehous", }, { "Id": 1091, "Product": "Eco Max", "Amount": 4530, "Discount": "0.188", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1092, "Product": "Eco Max", "Amount": 2240, "Discount": "0.104", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Building Management Inc", }, { "Id": 1093, "Product": "EnviroCare", "Amount": 1060, "Discount": "0.3942857142857142857142857143", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 1094, "Product": "Eco Max", "Amount": 9390, "Discount": "0.244", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 1095, "Product": "SolarMax", "Amount": 3980, "Discount": "0.2311111111111111111111111111", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 1096, "Product": "Eco Supreme", "Amount": 7730, "Discount": "0.135", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 1097, "Product": "Eco Max", "Amount": 1860, "Discount": "0.256", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 1098, "Product": "Eco Supreme", "Amount": 7740, "Discount": "0.13", "SaleDate": "2024-05-14T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 1099, "Product": "Eco Max", "Amount": 7080, "Discount": "0.168", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 1100, "Product": "SolarMax", "Amount": 3790, "Discount": "0.3155555555555555555555555556", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1101, "Product": "Eco Supreme", "Amount": 7430, "Discount": "0.285", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 1102, "Product": "SolarMax", "Amount": 3760, "Discount": "0.3288888888888888888888888889", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Resellers", "Customer": "McCord Builders", }, { "Id": 1103, "Product": "Eco Supreme", "Amount": 3890, "Discount": "0.055", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 1104, "Product": "EnviroCare", "Amount": 1260, "Discount": "0.28", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 1105, "Product": "EnviroCare", "Amount": 3190, "Discount": "0.1771428571428571428571428571", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 1106, "Product": "SolarMax", "Amount": 8810, "Discount": "0.0844444444444444444444444444", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1107, "Product": "SolarMax", "Amount": 8430, "Discount": "0.2533333333333333333333333333", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "McCord Builders", }, { "Id": 1108, "Product": "Eco Max", "Amount": 9820, "Discount": "0.072", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 1109, "Product": "Eco Supreme", "Amount": 5900, "Discount": "0.05", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 1110, "Product": "Eco Max", "Amount": 9660, "Discount": "0.136", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "VARs", "Customer": "Smith & Co", }, { "Id": 1111, "Product": "Eco Max", "Amount": 9730, "Discount": "0.108", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 1112, "Product": "EnviroCare", "Amount": 4630, "Discount": "0.3542857142857142857142857143", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Market Eco", }, { "Id": 1113, "Product": "Eco Supreme", "Amount": 1300, "Discount": "0.35", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Green Energy Inc", }, { "Id": 1114, "Product": "Eco Max", "Amount": 9310, "Discount": "0.276", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Smith & Co", }, { "Id": 1115, "Product": "SolarMax", "Amount": 6250, "Discount": "0.2222222222222222222222222222", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 1116, "Product": "Eco Max", "Amount": 4910, "Discount": "0.036", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 1117, "Product": "Eco Max", "Amount": 1970, "Discount": "0.212", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 1118, "Product": "Eco Max", "Amount": 4750, "Discount": "0.1", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 1119, "Product": "Eco Max", "Amount": 1900, "Discount": "0.24", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "McCord Builders", }, { "Id": 1120, "Product": "Eco Supreme", "Amount": 1500, "Discount": "0.25", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1121, "Product": "Eco Supreme", "Amount": 5600, "Discount": "0.2", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 1122, "Product": "SolarMax", "Amount": 4450, "Discount": "0.0222222222222222222222222222", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 1123, "Product": "SolarMax", "Amount": 3770, "Discount": "0.3244444444444444444444444444", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 1124, "Product": "EnviroCare", "Amount": 3230, "Discount": "0.1542857142857142857142857143", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 1125, "Product": "Eco Max", "Amount": 7340, "Discount": "0.064", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 1126, "Product": "Eco Max", "Amount": 9870, "Discount": "0.052", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 1127, "Product": "Eco Max", "Amount": 7410, "Discount": "0.036", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 1128, "Product": "Eco Max", "Amount": 9690, "Discount": "0.124", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Retail", "Customer": "Supply Warehous", }, { "Id": 1129, "Product": "SolarOne", "Amount": 2340, "Discount": "0.44", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 1130, "Product": "Eco Max", "Amount": 6780, "Discount": "0.288", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Retail", "Customer": "Global Services", }, { "Id": 1131, "Product": "Eco Max", "Amount": 2050, "Discount": "0.18", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1132, "Product": "Eco Max", "Amount": 2290, "Discount": "0.084", "SaleDate": "2024-05-14T00:00:00", "Region": "Africa", "Sector": "Telecom", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 1133, "Product": "Eco Max", "Amount": 4520, "Discount": "0.192", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "Building Management Inc", }, { "Id": 1134, "Product": "Eco Max", "Amount": 7180, "Discount": "0.128", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 1135, "Product": "Eco Supreme", "Amount": 5770, "Discount": "0.115", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 1136, "Product": "Eco Supreme", "Amount": 1490, "Discount": "0.255", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Green Energy Inc", }, { "Id": 1137, "Product": "EnviroCare", "Amount": 1170, "Discount": "0.3314285714285714285714285714", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 1138, "Product": "Eco Max", "Amount": 1770, "Discount": "0.292", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Resellers", "Customer": "McCord Builders", }, { "Id": 1139, "Product": "Eco Max", "Amount": 4830, "Discount": "0.068", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Get Solar Inc", }, { "Id": 1140, "Product": "EnviroCare Max", "Amount": 11040, "Discount": "0.0571428571428571428571428571", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 1141, "Product": "SolarMax", "Amount": 6180, "Discount": "0.2533333333333333333333333333", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 1142, "Product": "Eco Supreme", "Amount": 1290, "Discount": "0.355", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 1143, "Product": "Eco Max", "Amount": 9790, "Discount": "0.084", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Renewable Supplies", }, { "Id": 1144, "Product": "Eco Supreme", "Amount": 3600, "Discount": "0.2", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 1145, "Product": "Eco Max", "Amount": 1970, "Discount": "0.212", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 1146, "Product": "EnviroCare", "Amount": 1690, "Discount": "0.0342857142857142857142857143", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 1147, "Product": "Eco Supreme", "Amount": 1390, "Discount": "0.305", "SaleDate": "2024-05-14T00:00:00", "Region": "Africa", "Sector": "Banking", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 1148, "Product": "Eco Supreme", "Amount": 3640, "Discount": "0.18", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 1149, "Product": "SolarMax", "Amount": 1850, "Discount": "0.1777777777777777777777777778", "SaleDate": "2024-05-14T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 1150, "Product": "SolarOne", "Amount": 1160, "Discount": "0.2266666666666666666666666667", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 1151, "Product": "Eco Max", "Amount": 7390, "Discount": "0.044", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Retail", "Customer": "Global Services", }, { "Id": 1152, "Product": "Eco Max", "Amount": 1890, "Discount": "0.244", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 1153, "Product": "EnviroCare", "Amount": 4540, "Discount": "0.4057142857142857142857142857", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 1154, "Product": "SolarMax", "Amount": 1790, "Discount": "0.2044444444444444444444444444", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 1155, "Product": "Eco Supreme", "Amount": 7370, "Discount": "0.315", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 1156, "Product": "SolarMax", "Amount": 8770, "Discount": "0.1022222222222222222222222222", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 1157, "Product": "EnviroCare", "Amount": 5160, "Discount": "0.0514285714285714285714285714", "SaleDate": "2024-05-14T00:00:00", "Region": "Africa", "Sector": "Banking", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 1158, "Product": "Eco Max", "Amount": 4510, "Discount": "0.196", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 1159, "Product": "Eco Max", "Amount": 1900, "Discount": "0.24", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 1160, "Product": "Eco Max", "Amount": 4760, "Discount": "0.096", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 1161, "Product": "Eco Max", "Amount": 6970, "Discount": "0.212", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Building Management Inc", }, { "Id": 1162, "Product": "Eco Max", "Amount": 1860, "Discount": "0.256", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 1163, "Product": "Eco Supreme", "Amount": 1940, "Discount": "0.03", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 1164, "Product": "SolarMax", "Amount": 6480, "Discount": "0.12", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 1165, "Product": "Eco Supreme", "Amount": 3770, "Discount": "0.115", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 1166, "Product": "Eco Max", "Amount": 9790, "Discount": "0.084", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 1167, "Product": "Eco Supreme", "Amount": 7870, "Discount": "0.065", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 1168, "Product": "SolarMax", "Amount": 4380, "Discount": "0.0533333333333333333333333333", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 1169, "Product": "Eco Supreme", "Amount": 3800, "Discount": "0.1", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 1170, "Product": "Eco Max", "Amount": 4750, "Discount": "0.1", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 1171, "Product": "Eco Supreme", "Amount": 5800, "Discount": "0.1", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 1172, "Product": "Eco Supreme", "Amount": 5440, "Discount": "0.28", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Environment Solar", }, { "Id": 1173, "Product": "Eco Max", "Amount": 4770, "Discount": "0.092", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "Columbia Solar", }, { "Id": 1174, "Product": "SolarMax", "Amount": 6250, "Discount": "0.2222222222222222222222222222", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1175, "Product": "SolarMax", "Amount": 4120, "Discount": "0.1688888888888888888888888889", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 1176, "Product": "Eco Max", "Amount": 4380, "Discount": "0.248", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 1177, "Product": "Eco Max", "Amount": 9440, "Discount": "0.224", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Retail", "Customer": "McCord Builders", }, { "Id": 1178, "Product": "Eco Max", "Amount": 4600, "Discount": "0.16", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Smith & Co", }, { "Id": 1179, "Product": "SolarMax", "Amount": 2080, "Discount": "0.0755555555555555555555555556", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 1180, "Product": "EnviroCare", "Amount": 3170, "Discount": "0.1885714285714285714285714286", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 1181, "Product": "SolarMax", "Amount": 8450, "Discount": "0.2444444444444444444444444444", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 1182, "Product": "Eco Max", "Amount": 6980, "Discount": "0.208", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 1183, "Product": "Eco Max", "Amount": 9810, "Discount": "0.076", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 1184, "Product": "Eco Supreme", "Amount": 7840, "Discount": "0.08", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Health Plus Inc", }, { "Id": 1185, "Product": "Eco Supreme", "Amount": 3900, "Discount": "0.05", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 1186, "Product": "Eco Max", "Amount": 7110, "Discount": "0.156", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 1187, "Product": "EnviroCare", "Amount": 5170, "Discount": "0.0457142857142857142857142857", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 1188, "Product": "Eco Max", "Amount": 4590, "Discount": "0.164", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 1189, "Product": "EnviroCare", "Amount": 6560, "Discount": "0.2514285714285714285714285714", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 1190, "Product": "Eco Max", "Amount": 4300, "Discount": "0.28", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Retail", "Customer": "Market Eco", }, { "Id": 1191, "Product": "SolarMax", "Amount": 4010, "Discount": "0.2177777777777777777777777778", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 1192, "Product": "Eco Supreme", "Amount": 7710, "Discount": "0.145", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 1193, "Product": "Eco Max", "Amount": 7050, "Discount": "0.18", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1194, "Product": "Eco Max", "Amount": 4790, "Discount": "0.084", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 1195, "Product": "Eco Max", "Amount": 7400, "Discount": "0.04", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 1196, "Product": "Eco Max", "Amount": 2110, "Discount": "0.156", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 1197, "Product": "Eco Max", "Amount": 4510, "Discount": "0.196", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Building Management Inc", }, { "Id": 1198, "Product": "EnviroCare", "Amount": 4720, "Discount": "0.3028571428571428571428571429", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Retail", "Customer": "Mercury Solar", }, { "Id": 1199, "Product": "Eco Max", "Amount": 4860, "Discount": "0.056", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 1200, "Product": "Eco Max", "Amount": 1950, "Discount": "0.22", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Arthur & Sons", }, { "Id": 1201, "Product": "Eco Max", "Amount": 9880, "Discount": "0.048", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1202, "Product": "Eco Max", "Amount": 2030, "Discount": "0.188", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 1203, "Product": "Eco Max", "Amount": 2150, "Discount": "0.14", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 1204, "Product": "Eco Supreme", "Amount": 7790, "Discount": "0.105", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 1205, "Product": "Eco Supreme", "Amount": 1550, "Discount": "0.225", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 1206, "Product": "EnviroCare", "Amount": 2880, "Discount": "0.3542857142857142857142857143", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 1207, "Product": "Eco Max", "Amount": 7110, "Discount": "0.156", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 1208, "Product": "Eco Max", "Amount": 9810, "Discount": "0.076", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 1209, "Product": "SolarMax", "Amount": 1800, "Discount": "0.2", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1210, "Product": "SolarMax", "Amount": 3960, "Discount": "0.24", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 1211, "Product": "Eco Supreme", "Amount": 3260, "Discount": "0.37", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 1212, "Product": "Eco Supreme", "Amount": 5360, "Discount": "0.32", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 1213, "Product": "EnviroCare", "Amount": 4680, "Discount": "0.3257142857142857142857142857", "SaleDate": "2024-05-14T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 1214, "Product": "Eco Max", "Amount": 9730, "Discount": "0.108", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 1215, "Product": "Eco Supreme", "Amount": 3620, "Discount": "0.19", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1216, "Product": "Eco Max", "Amount": 9810, "Discount": "0.076", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 1217, "Product": "EnviroCare", "Amount": 4880, "Discount": "0.2114285714285714285714285714", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1218, "Product": "Eco Supreme", "Amount": 5540, "Discount": "0.23", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 1219, "Product": "SolarOne", "Amount": 1090, "Discount": "0.2733333333333333333333333333", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Mercury Solar", }, { "Id": 1220, "Product": "EnviroCare", "Amount": 2780, "Discount": "0.4114285714285714285714285714", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 1221, "Product": "SolarMax", "Amount": 1560, "Discount": "0.3066666666666666666666666667", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 1222, "Product": "Eco Max", "Amount": 9760, "Discount": "0.096", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 1223, "Product": "Eco Max", "Amount": 4540, "Discount": "0.184", "SaleDate": "2024-05-14T00:00:00", "Region": "Africa", "Sector": "Banking", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 1224, "Product": "EnviroCare", "Amount": 5180, "Discount": "0.04", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 1225, "Product": "SolarMax", "Amount": 6330, "Discount": "0.1866666666666666666666666667", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 1226, "Product": "Eco Supreme", "Amount": 7370, "Discount": "0.315", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 1227, "Product": "SolarMax", "Amount": 6350, "Discount": "0.1777777777777777777777777778", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 1228, "Product": "Eco Max", "Amount": 9450, "Discount": "0.22", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 1229, "Product": "Eco Max", "Amount": 4630, "Discount": "0.148", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Building Management Inc", }, { "Id": 1230, "Product": "Eco Supreme", "Amount": 3430, "Discount": "0.285", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 1231, "Product": "Eco Max", "Amount": 7310, "Discount": "0.076", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 1232, "Product": "SolarMax", "Amount": 8950, "Discount": "0.0222222222222222222222222222", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 1233, "Product": "Eco Supreme", "Amount": 7340, "Discount": "0.33", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 1234, "Product": "SolarMax", "Amount": 8800, "Discount": "0.0888888888888888888888888889", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 1235, "Product": "Eco Max", "Amount": 7200, "Discount": "0.12", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 1236, "Product": "Eco Supreme", "Amount": 7600, "Discount": "0.2", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 1237, "Product": "EnviroCare", "Amount": 4510, "Discount": "0.4228571428571428571428571429", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 1238, "Product": "EnviroCare", "Amount": 6610, "Discount": "0.2228571428571428571428571429", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 1239, "Product": "Eco Max", "Amount": 4840, "Discount": "0.064", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 1240, "Product": "Eco Max", "Amount": 4800, "Discount": "0.08", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 1241, "Product": "Eco Supreme", "Amount": 7950, "Discount": "0.025", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Green Energy Inc", }, { "Id": 1242, "Product": "SolarMax", "Amount": 2110, "Discount": "0.0622222222222222222222222222", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 1243, "Product": "Eco Max", "Amount": 6870, "Discount": "0.252", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 1244, "Product": "Eco Max", "Amount": 4550, "Discount": "0.18", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Retail", "Customer": "Get Solar Inc", }, { "Id": 1245, "Product": "Eco Supreme", "Amount": 5670, "Discount": "0.165", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 1246, "Product": "SolarOne", "Amount": 5870, "Discount": "0.0866666666666666666666666667", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 1247, "Product": "EnviroCare", "Amount": 5110, "Discount": "0.08", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 1248, "Product": "Eco Supreme", "Amount": 1290, "Discount": "0.355", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 1249, "Product": "SolarMax", "Amount": 8730, "Discount": "0.12", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 1250, "Product": "EnviroCare", "Amount": 2910, "Discount": "0.3371428571428571428571428571", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 1251, "Product": "SolarMax", "Amount": 4410, "Discount": "0.04", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 1252, "Product": "SolarMax", "Amount": 6140, "Discount": "0.2711111111111111111111111111", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 1253, "Product": "Eco Max", "Amount": 4520, "Discount": "0.192", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Environment Solar", }, { "Id": 1254, "Product": "Eco Supreme", "Amount": 5680, "Discount": "0.16", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1255, "Product": "Eco Max", "Amount": 2300, "Discount": "0.08", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 1256, "Product": "Eco Supreme", "Amount": 7720, "Discount": "0.14", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1257, "Product": "Eco Supreme", "Amount": 5500, "Discount": "0.25", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 1258, "Product": "Eco Supreme", "Amount": 5400, "Discount": "0.3", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 1259, "Product": "SolarMax", "Amount": 3980, "Discount": "0.2311111111111111111111111111", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 1260, "Product": "Eco Supreme", "Amount": 5650, "Discount": "0.175", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 1261, "Product": "Eco Max", "Amount": 9560, "Discount": "0.176", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Renewable Supplies", }, { "Id": 1262, "Product": "Eco Max", "Amount": 4900, "Discount": "0.04", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Retail", "Customer": "Mercury Solar", }, { "Id": 1263, "Product": "Eco Max", "Amount": 4800, "Discount": "0.08", "SaleDate": "2024-05-14T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1264, "Product": "Eco Max", "Amount": 1910, "Discount": "0.236", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 1265, "Product": "Eco Supreme", "Amount": 7790, "Discount": "0.105", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 1266, "Product": "Eco Max", "Amount": 7420, "Discount": "0.032", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 1267, "Product": "Eco Max", "Amount": 1830, "Discount": "0.268", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 1268, "Product": "SolarMax", "Amount": 1740, "Discount": "0.2266666666666666666666666667", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 1269, "Product": "Eco Max", "Amount": 9570, "Discount": "0.172", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "McCord Builders", }, { "Id": 1270, "Product": "Eco Supreme", "Amount": 7530, "Discount": "0.235", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 1271, "Product": "Eco Max", "Amount": 1980, "Discount": "0.208", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 1272, "Product": "Eco Max", "Amount": 4530, "Discount": "0.188", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 1273, "Product": "EnviroCare", "Amount": 6530, "Discount": "0.2685714285714285714285714286", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Retail", "Customer": "Solar Warehouse", }, { "Id": 1274, "Product": "Eco Max", "Amount": 9670, "Discount": "0.132", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Retail", "Customer": "Environment Solar", }, { "Id": 1275, "Product": "EnviroCare Max", "Amount": 8220, "Discount": "0.0642857142857142857142857143", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Green Energy Inc", }, { "Id": 1276, "Product": "Eco Supreme", "Amount": 7670, "Discount": "0.165", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 1277, "Product": "Eco Supreme", "Amount": 1800, "Discount": "0.1", "SaleDate": "2024-05-14T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 1278, "Product": "SolarMax", "Amount": 4260, "Discount": "0.1066666666666666666666666667", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 1279, "Product": "SolarMax", "Amount": 2000, "Discount": "0.1111111111111111111111111111", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 1280, "Product": "Eco Max", "Amount": 4310, "Discount": "0.276", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 1281, "Product": "Eco Max", "Amount": 9800, "Discount": "0.08", "SaleDate": "2024-05-14T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Arthur & Sons", }, { "Id": 1282, "Product": "Eco Supreme", "Amount": 5570, "Discount": "0.215", "SaleDate": "2024-05-14T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Renewable Supplies", }, { "Id": 1283, "Product": "Eco Max", "Amount": 7190, "Discount": "0.124", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 1284, "Product": "Eco Max", "Amount": 9780, "Discount": "0.088", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 1285, "Product": "Eco Supreme", "Amount": 3400, "Discount": "0.3", "SaleDate": "2024-05-14T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Retail", "Customer": "Gemini Stores", }, { "Id": 1286, "Product": "Eco Max", "Amount": 2100, "Discount": "0.16", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 1287, "Product": "Eco Supreme", "Amount": 5510, "Discount": "0.245", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 1288, "Product": "SolarMax", "Amount": 8380, "Discount": "0.2755555555555555555555555556", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 1289, "Product": "SolarMax", "Amount": 1810, "Discount": "0.1955555555555555555555555556", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "VARs", "Customer": "Building Management Inc", }, { "Id": 1290, "Product": "Eco Max", "Amount": 4650, "Discount": "0.14", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 1291, "Product": "Eco Max", "Amount": 4740, "Discount": "0.104", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 1292, "Product": "SolarOne", "Amount": 5810, "Discount": "0.1266666666666666666666666667", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Green Energy Inc", }, { "Id": 1293, "Product": "Eco Max", "Amount": 9780, "Discount": "0.088", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 1294, "Product": "SolarMax", "Amount": 6540, "Discount": "0.0933333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "Green Energy Inc", }, { "Id": 1295, "Product": "Eco Max", "Amount": 4640, "Discount": "0.144", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Discovery Systems", }, { "Id": 1296, "Product": "SolarMax", "Amount": 4210, "Discount": "0.1288888888888888888888888889", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 1297, "Product": "EnviroCare", "Amount": 1380, "Discount": "0.2114285714285714285714285714", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 1298, "Product": "Eco Max", "Amount": 4730, "Discount": "0.108", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 1299, "Product": "Eco Supreme", "Amount": 3540, "Discount": "0.23", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 1300, "Product": "Eco Max", "Amount": 2120, "Discount": "0.152", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 1301, "Product": "SolarMax", "Amount": 6480, "Discount": "0.12", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 1302, "Product": "SolarMax", "Amount": 8700, "Discount": "0.1333333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Solar Warehouse", }, { "Id": 1303, "Product": "EnviroCare", "Amount": 4660, "Discount": "0.3371428571428571428571428571", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 1304, "Product": "SolarMax", "Amount": 6630, "Discount": "0.0533333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Direct", "Customer": "Smith & Co", }, { "Id": 1305, "Product": "Eco Max", "Amount": 2070, "Discount": "0.172", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 1306, "Product": "SolarMax", "Amount": 1630, "Discount": "0.2755555555555555555555555556", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Mercury Solar", }, { "Id": 1307, "Product": "SolarMax", "Amount": 4110, "Discount": "0.1733333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 1308, "Product": "EnviroCare", "Amount": 5040, "Discount": "0.12", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 1309, "Product": "Eco Supreme", "Amount": 5640, "Discount": "0.18", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 1310, "Product": "Eco Supreme", "Amount": 7290, "Discount": "0.355", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Building Management Inc", }, { "Id": 1311, "Product": "Eco Supreme", "Amount": 5720, "Discount": "0.14", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 1312, "Product": "SolarMax", "Amount": 6390, "Discount": "0.16", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 1313, "Product": "Eco Max", "Amount": 4400, "Discount": "0.24", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 1314, "Product": "EnviroCare", "Amount": 6570, "Discount": "0.2457142857142857142857142857", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 1315, "Product": "Eco Max", "Amount": 4790, "Discount": "0.084", "SaleDate": "2024-05-15T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 1316, "Product": "Eco Max", "Amount": 6940, "Discount": "0.224", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 1317, "Product": "Eco Max", "Amount": 1870, "Discount": "0.252", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 1318, "Product": "SolarMax", "Amount": 6480, "Discount": "0.12", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "McCord Builders", }, { "Id": 1319, "Product": "Eco Max", "Amount": 4930, "Discount": "0.028", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1320, "Product": "Eco Max", "Amount": 7360, "Discount": "0.056", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 1321, "Product": "Eco Supreme", "Amount": 7340, "Discount": "0.33", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "VARs", "Customer": "System Integrators", }, { "Id": 1322, "Product": "Eco Max", "Amount": 7450, "Discount": "0.02", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 1323, "Product": "Eco Max", "Amount": 7220, "Discount": "0.112", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Arthur & Sons", }, { "Id": 1324, "Product": "Eco Supreme", "Amount": 1890, "Discount": "0.055", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "McCord Builders", }, { "Id": 1325, "Product": "SolarMax", "Amount": 4360, "Discount": "0.0622222222222222222222222222", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 1326, "Product": "Eco Max", "Amount": 9500, "Discount": "0.2", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 1327, "Product": "SolarOne", "Amount": 2810, "Discount": "0.1266666666666666666666666667", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Market Eco", }, { "Id": 1328, "Product": "Eco Max", "Amount": 2430, "Discount": "0.028", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Building Management Inc", }, { "Id": 1329, "Product": "Eco Max", "Amount": 2420, "Discount": "0.032", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 1330, "Product": "Eco Supreme", "Amount": 1790, "Discount": "0.105", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 1331, "Product": "Eco Supreme", "Amount": 1700, "Discount": "0.15", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 1332, "Product": "Eco Supreme", "Amount": 5700, "Discount": "0.15", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Columbia Solar", }, { "Id": 1333, "Product": "Eco Max", "Amount": 9490, "Discount": "0.204", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 1334, "Product": "SolarMax", "Amount": 1890, "Discount": "0.16", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "Gemini Stores", }, { "Id": 1335, "Product": "Eco Max", "Amount": 2110, "Discount": "0.156", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Retail", "Customer": "Market Eco", }, { "Id": 1336, "Product": "Eco Supreme", "Amount": 7470, "Discount": "0.265", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 1337, "Product": "Eco Max", "Amount": 9400, "Discount": "0.24", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 1338, "Product": "Eco Supreme", "Amount": 5580, "Discount": "0.21", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 1339, "Product": "Eco Max", "Amount": 4610, "Discount": "0.156", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1340, "Product": "EnviroCare", "Amount": 1020, "Discount": "0.4171428571428571428571428571", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 1341, "Product": "EnviroCare", "Amount": 6610, "Discount": "0.2228571428571428571428571429", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Get Solar Inc", }, { "Id": 1342, "Product": "Eco Max", "Amount": 2410, "Discount": "0.036", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "McCord Builders", }, { "Id": 1343, "Product": "EnviroCare", "Amount": 4690, "Discount": "0.32", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 1344, "Product": "Eco Max", "Amount": 4390, "Discount": "0.244", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Apollo Inc", }, { "Id": 1345, "Product": "Eco Supreme", "Amount": 3760, "Discount": "0.12", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Get Solar Inc", }, { "Id": 1346, "Product": "Eco Supreme", "Amount": 7840, "Discount": "0.08", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 1347, "Product": "SolarMax", "Amount": 6620, "Discount": "0.0577777777777777777777777778", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 1348, "Product": "Eco Max", "Amount": 9310, "Discount": "0.276", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 1349, "Product": "SolarMax", "Amount": 8280, "Discount": "0.32", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 1350, "Product": "Eco Max", "Amount": 9830, "Discount": "0.068", "SaleDate": "2024-05-15T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 1351, "Product": "Eco Supreme", "Amount": 7740, "Discount": "0.13", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 1352, "Product": "Eco Supreme", "Amount": 7570, "Discount": "0.215", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 1353, "Product": "Eco Max", "Amount": 7430, "Discount": "0.028", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 1354, "Product": "Eco Max", "Amount": 9510, "Discount": "0.196", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 1355, "Product": "Eco Max", "Amount": 1800, "Discount": "0.28", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 1356, "Product": "Eco Supreme", "Amount": 3280, "Discount": "0.36", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 1357, "Product": "Eco Max", "Amount": 2200, "Discount": "0.12", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 1358, "Product": "Eco Supreme", "Amount": 7440, "Discount": "0.28", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 1359, "Product": "SolarMax", "Amount": 6500, "Discount": "0.1111111111111111111111111111", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Columbia Solar", }, { "Id": 1360, "Product": "SolarMax", "Amount": 8510, "Discount": "0.2177777777777777777777777778", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 1361, "Product": "Eco Max", "Amount": 1880, "Discount": "0.248", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Gemini Stores", }, { "Id": 1362, "Product": "Eco Supreme", "Amount": 5730, "Discount": "0.135", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Arthur & Sons", }, { "Id": 1363, "Product": "Eco Max", "Amount": 1840, "Discount": "0.264", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 1364, "Product": "Eco Max", "Amount": 7080, "Discount": "0.168", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 1365, "Product": "Eco Max", "Amount": 2320, "Discount": "0.072", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 1366, "Product": "Eco Supreme", "Amount": 5460, "Discount": "0.27", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 1367, "Product": "Eco Max", "Amount": 7060, "Discount": "0.176", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 1368, "Product": "Eco Max", "Amount": 9400, "Discount": "0.24", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Health Plus Inc", }, { "Id": 1369, "Product": "Eco Max", "Amount": 9630, "Discount": "0.148", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Environment Solar", }, { "Id": 1370, "Product": "Eco Max", "Amount": 1990, "Discount": "0.204", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 1371, "Product": "Eco Max", "Amount": 9590, "Discount": "0.164", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 1372, "Product": "Eco Supreme", "Amount": 5260, "Discount": "0.37", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 1373, "Product": "Eco Max", "Amount": 2230, "Discount": "0.108", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 1374, "Product": "Eco Max", "Amount": 4420, "Discount": "0.232", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Retail", "Customer": "Environment Solar", }, { "Id": 1375, "Product": "Eco Max", "Amount": 4280, "Discount": "0.288", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 1376, "Product": "SolarMax", "Amount": 8400, "Discount": "0.2666666666666666666666666667", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "McCord Builders", }, { "Id": 1377, "Product": "SolarMax", "Amount": 6600, "Discount": "0.0666666666666666666666666667", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 1378, "Product": "EnviroCare", "Amount": 6820, "Discount": "0.1028571428571428571428571429", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 1379, "Product": "Eco Supreme", "Amount": 5260, "Discount": "0.37", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Retail", "Customer": "Columbia Solar", }, { "Id": 1380, "Product": "Eco Supreme", "Amount": 1500, "Discount": "0.25", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Green Energy Inc", }, { "Id": 1381, "Product": "Eco Max", "Amount": 7360, "Discount": "0.056", "SaleDate": "2024-05-15T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Johnson & Assoc", }, { "Id": 1382, "Product": "SolarMax", "Amount": 4410, "Discount": "0.04", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Retail", "Customer": "Solar Warehouse", }, { "Id": 1383, "Product": "Eco Max", "Amount": 4900, "Discount": "0.04", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1384, "Product": "Eco Max", "Amount": 7400, "Discount": "0.04", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "System Integrators", }, { "Id": 1385, "Product": "SolarOne", "Amount": 5650, "Discount": "0.2333333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Solar Warehouse", }, { "Id": 1386, "Product": "SolarMax", "Amount": 6340, "Discount": "0.1822222222222222222222222222", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 1387, "Product": "SolarMax", "Amount": 1940, "Discount": "0.1377777777777777777777777778", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Consultants", "Customer": "Gemini Stores", }, { "Id": 1388, "Product": "Eco Supreme", "Amount": 1550, "Discount": "0.225", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Renewable Supplies", }, { "Id": 1389, "Product": "EnviroCare", "Amount": 2860, "Discount": "0.3657142857142857142857142857", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Building Management Inc", }, { "Id": 1390, "Product": "Eco Max", "Amount": 9480, "Discount": "0.208", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Apollo Inc", }, { "Id": 1391, "Product": "Eco Max", "Amount": 1960, "Discount": "0.216", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Renewable Supplies", }, { "Id": 1392, "Product": "Eco Max", "Amount": 4880, "Discount": "0.048", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 1393, "Product": "Eco Supreme", "Amount": 1880, "Discount": "0.06", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Supply Warehous", }, { "Id": 1394, "Product": "SolarMax", "Amount": 1930, "Discount": "0.1422222222222222222222222222", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Retail", "Customer": "Get Solar Inc", }, { "Id": 1395, "Product": "SolarMax", "Amount": 3910, "Discount": "0.2622222222222222222222222222", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 1396, "Product": "EnviroCare", "Amount": 3270, "Discount": "0.1314285714285714285714285714", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 1397, "Product": "Eco Supreme", "Amount": 1760, "Discount": "0.12", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Discovery Systems", }, { "Id": 1398, "Product": "Eco Max", "Amount": 9570, "Discount": "0.172", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Energy Systems", }, { "Id": 1399, "Product": "SolarMax", "Amount": 3850, "Discount": "0.2888888888888888888888888889", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 1400, "Product": "Eco Max", "Amount": 7300, "Discount": "0.08", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 1401, "Product": "Eco Max", "Amount": 4540, "Discount": "0.184", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 1402, "Product": "Eco Max", "Amount": 2000, "Discount": "0.2", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 1403, "Product": "SolarMax", "Amount": 3880, "Discount": "0.2755555555555555555555555556", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Environment Solar", }, { "Id": 1404, "Product": "SolarOne", "Amount": 4240, "Discount": "0.1733333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 1405, "Product": "SolarMax", "Amount": 4110, "Discount": "0.1733333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 1406, "Product": "SolarMax", "Amount": 4020, "Discount": "0.2133333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 1407, "Product": "Eco Supreme", "Amount": 3640, "Discount": "0.18", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Green Energy Inc", }, { "Id": 1408, "Product": "Eco Max", "Amount": 4680, "Discount": "0.128", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Get Solar Inc", }, { "Id": 1409, "Product": "Eco Max", "Amount": 9760, "Discount": "0.096", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 1410, "Product": "SolarOne", "Amount": 1310, "Discount": "0.1266666666666666666666666667", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1411, "Product": "Eco Supreme", "Amount": 3870, "Discount": "0.065", "SaleDate": "2024-05-15T00:00:00", "Region": "Africa", "Sector": "Banking", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 1412, "Product": "Eco Max", "Amount": 2100, "Discount": "0.16", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Columbia Solar", }, { "Id": 1413, "Product": "Eco Supreme", "Amount": 5430, "Discount": "0.285", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 1414, "Product": "Eco Supreme", "Amount": 7490, "Discount": "0.255", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 1415, "Product": "Eco Max", "Amount": 7210, "Discount": "0.116", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 1416, "Product": "Eco Max", "Amount": 9390, "Discount": "0.244", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 1417, "Product": "Eco Max", "Amount": 6800, "Discount": "0.28", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Environment Solar", }, { "Id": 1418, "Product": "Eco Max", "Amount": 2320, "Discount": "0.072", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 1419, "Product": "SolarMax", "Amount": 4380, "Discount": "0.0533333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 1420, "Product": "Eco Supreme", "Amount": 3850, "Discount": "0.075", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Discovery Systems", }, { "Id": 1421, "Product": "Eco Max", "Amount": 6820, "Discount": "0.272", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 1422, "Product": "Eco Supreme", "Amount": 5660, "Discount": "0.17", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 1423, "Product": "Eco Max", "Amount": 6810, "Discount": "0.276", "SaleDate": "2024-05-15T00:00:00", "Region": "Africa", "Sector": "Banking", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 1424, "Product": "SolarOne", "Amount": 2870, "Discount": "0.0866666666666666666666666667", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Get Solar Inc", }, { "Id": 1425, "Product": "Eco Max", "Amount": 2420, "Discount": "0.032", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "VARs", "Customer": "Energy Systems", }, { "Id": 1426, "Product": "EnviroCare", "Amount": 6900, "Discount": "0.0571428571428571428571428571", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Retail", "Customer": "McCord Builders", }, { "Id": 1427, "Product": "Eco Max", "Amount": 2260, "Discount": "0.096", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 1428, "Product": "Eco Max", "Amount": 1960, "Discount": "0.216", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Solar Warehouse", }, { "Id": 1429, "Product": "Eco Max", "Amount": 7390, "Discount": "0.044", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Resellers", "Customer": "McCord Builders", }, { "Id": 1430, "Product": "SolarMax", "Amount": 1590, "Discount": "0.2933333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 1431, "Product": "Eco Supreme", "Amount": 3390, "Discount": "0.305", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 1432, "Product": "Eco Supreme", "Amount": 5700, "Discount": "0.15", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 1433, "Product": "Eco Supreme", "Amount": 5280, "Discount": "0.36", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Mercury Solar", }, { "Id": 1434, "Product": "Eco Max", "Amount": 9320, "Discount": "0.272", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 1435, "Product": "Eco Supreme", "Amount": 5840, "Discount": "0.08", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Building Management Inc", }, { "Id": 1436, "Product": "Eco Max", "Amount": 6770, "Discount": "0.292", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 1437, "Product": "SolarOne", "Amount": 5360, "Discount": "0.4266666666666666666666666667", "SaleDate": "2024-05-15T00:00:00", "Region": "Africa", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 1438, "Product": "Eco Supreme", "Amount": 5530, "Discount": "0.235", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Retail", "Customer": "Environment Solar", }, { "Id": 1439, "Product": "Eco Supreme", "Amount": 7510, "Discount": "0.245", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Beacon Systems", }, { "Id": 1440, "Product": "Eco Max", "Amount": 7430, "Discount": "0.028", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 1441, "Product": "Eco Max", "Amount": 4820, "Discount": "0.072", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Retail", "Customer": "Arthur & Sons", }, { "Id": 1442, "Product": "Eco Supreme", "Amount": 5420, "Discount": "0.29", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Get Solar Inc", }, { "Id": 1443, "Product": "Eco Supreme", "Amount": 5920, "Discount": "0.04", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Johnson & Assoc", }, { "Id": 1444, "Product": "Eco Max", "Amount": 4890, "Discount": "0.044", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 1445, "Product": "Eco Max", "Amount": 7420, "Discount": "0.032", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 1446, "Product": "SolarMax", "Amount": 4390, "Discount": "0.0488888888888888888888888889", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 1447, "Product": "SolarMax", "Amount": 8610, "Discount": "0.1733333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Resellers", "Customer": "Gemini Stores", }, { "Id": 1448, "Product": "SolarMax", "Amount": 8870, "Discount": "0.0577777777777777777777777778", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 1449, "Product": "Eco Supreme", "Amount": 1800, "Discount": "0.1", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Get Solar Inc", }, { "Id": 1450, "Product": "SolarOne", "Amount": 1150, "Discount": "0.2333333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Discovery Systems", }, { "Id": 1451, "Product": "Eco Max", "Amount": 4410, "Discount": "0.236", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Retail", "Customer": "Arthur & Sons", }, { "Id": 1452, "Product": "Eco Max", "Amount": 9480, "Discount": "0.208", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Discovery Systems", }, { "Id": 1453, "Product": "SolarMax", "Amount": 4110, "Discount": "0.1733333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Market Eco", }, { "Id": 1454, "Product": "Eco Max", "Amount": 2360, "Discount": "0.056", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Retail", "Customer": "Mercury Solar", }, { "Id": 1455, "Product": "Eco Max", "Amount": 2280, "Discount": "0.088", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "Arthur & Sons", }, { "Id": 1456, "Product": "SolarMax", "Amount": 8430, "Discount": "0.2533333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 1457, "Product": "Eco Max", "Amount": 1980, "Discount": "0.208", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "System Integrators", }, { "Id": 1458, "Product": "Eco Max", "Amount": 9340, "Discount": "0.264", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Apollo Inc", }, { "Id": 1459, "Product": "SolarMax", "Amount": 4130, "Discount": "0.1644444444444444444444444444", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 1460, "Product": "Eco Supreme", "Amount": 1690, "Discount": "0.155", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 1461, "Product": "Eco Max", "Amount": 1980, "Discount": "0.208", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Market Eco", }, { "Id": 1462, "Product": "Eco Max", "Amount": 2230, "Discount": "0.108", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 1463, "Product": "Eco Supreme", "Amount": 3380, "Discount": "0.31", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 1464, "Product": "Eco Max", "Amount": 2290, "Discount": "0.084", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Retail", "Customer": "Johnson & Assoc", }, { "Id": 1465, "Product": "SolarOne", "Amount": 1040, "Discount": "0.3066666666666666666666666667", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Manufacturing", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 1466, "Product": "SolarMax", "Amount": 6120, "Discount": "0.28", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 1467, "Product": "SolarOne", "Amount": 5830, "Discount": "0.1133333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Solar Warehouse", }, { "Id": 1468, "Product": "EnviroCare", "Amount": 4580, "Discount": "0.3828571428571428571428571429", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 1469, "Product": "Eco Max", "Amount": 4800, "Discount": "0.08", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "VARs", "Customer": "Arthur & Sons", }, { "Id": 1470, "Product": "Eco Max", "Amount": 4520, "Discount": "0.192", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 1471, "Product": "EnviroCare", "Amount": 5090, "Discount": "0.0914285714285714285714285714", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 1472, "Product": "Eco Max", "Amount": 9770, "Discount": "0.092", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Resellers", "Customer": "Arthur & Sons", }, { "Id": 1473, "Product": "Eco Supreme", "Amount": 5360, "Discount": "0.32", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 1474, "Product": "Eco Max", "Amount": 4850, "Discount": "0.06", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 1475, "Product": "Eco Supreme", "Amount": 5640, "Discount": "0.18", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 1476, "Product": "Eco Max", "Amount": 6830, "Discount": "0.268", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 1477, "Product": "SolarMax", "Amount": 4010, "Discount": "0.2177777777777777777777777778", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "VARs", "Customer": "Beacon Systems", }, { "Id": 1478, "Product": "Eco Max", "Amount": 4690, "Discount": "0.124", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Beacon Systems", }, { "Id": 1479, "Product": "Eco Supreme", "Amount": 7810, "Discount": "0.095", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 1480, "Product": "SolarOne", "Amount": 5880, "Discount": "0.08", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Banking", "Channel": "Direct", "Customer": "Johnson & Assoc", }, { "Id": 1481, "Product": "Eco Max", "Amount": 2340, "Discount": "0.064", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "VARs", "Customer": "Global Services", }, { "Id": 1482, "Product": "Eco Max", "Amount": 6950, "Discount": "0.22", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Telecom", "Channel": "Retail", "Customer": "Market Eco", }, { "Id": 1483, "Product": "EnviroCare", "Amount": 1560, "Discount": "0.1085714285714285714285714286", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Columbia Solar", }, { "Id": 1484, "Product": "SolarOne", "Amount": 3850, "Discount": "0.4333333333333333333333333333", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "VARs", "Customer": "Smith & Co", }, { "Id": 1485, "Product": "Eco Supreme", "Amount": 5500, "Discount": "0.25", "SaleDate": "2024-05-15T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 1486, "Product": "SolarMax", "Amount": 6520, "Discount": "0.1022222222222222222222222222", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Columbia Solar", }, { "Id": 1487, "Product": "Eco Supreme", "Amount": 5310, "Discount": "0.345", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 1488, "Product": "SolarMax", "Amount": 6280, "Discount": "0.2088888888888888888888888889", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Smith & Co", }, { "Id": 1489, "Product": "Eco Supreme", "Amount": 1820, "Discount": "0.09", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Direct", "Customer": "Building Management Inc", }, { "Id": 1490, "Product": "Eco Max", "Amount": 7140, "Discount": "0.144", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 1491, "Product": "SolarMax", "Amount": 3780, "Discount": "0.32", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1492, "Product": "Eco Supreme", "Amount": 7260, "Discount": "0.37", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Supply Warehous", }, { "Id": 1493, "Product": "Eco Max", "Amount": 9800, "Discount": "0.08", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Telecom", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1494, "Product": "EnviroCare", "Amount": 1360, "Discount": "0.2228571428571428571428571429", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Resellers", "Customer": "Health Plus Inc", }, { "Id": 1495, "Product": "Eco Max", "Amount": 7010, "Discount": "0.196", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 1496, "Product": "Eco Max", "Amount": 6830, "Discount": "0.268", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Health", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 1497, "Product": "Eco Supreme", "Amount": 3300, "Discount": "0.35", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Global Services", }, { "Id": 1498, "Product": "SolarMax", "Amount": 8350, "Discount": "0.2888888888888888888888888889", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Health", "Channel": "Consultants", "Customer": "McCord Builders", }, { "Id": 1499, "Product": "SolarMax", "Amount": 6460, "Discount": "0.1288888888888888888888888889", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Health Plus Inc", }, { "Id": 1500, "Product": "Eco Max", "Amount": 6890, "Discount": "0.244", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Telecom", "Channel": "Resellers", "Customer": "Market Eco", }, { "Id": 1501, "Product": "SolarOne", "Amount": 5880, "Discount": "0.08", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 1502, "Product": "EnviroCare", "Amount": 2820, "Discount": "0.3885714285714285714285714286", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 1503, "Product": "Eco Supreme", "Amount": 5370, "Discount": "0.315", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Consultants", "Customer": "Market Eco", }, { "Id": 1504, "Product": "Eco Supreme", "Amount": 7850, "Discount": "0.075", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 1505, "Product": "Eco Max", "Amount": 7380, "Discount": "0.048", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Health", "Channel": "Consultants", "Customer": "Energy Systems", }, { "Id": 1506, "Product": "Eco Max", "Amount": 7110, "Discount": "0.156", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Mercury Solar", }, { "Id": 1507, "Product": "SolarMax", "Amount": 1800, "Discount": "0.2", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Banking", "Channel": "Retail", "Customer": "Building Management Inc", }, { "Id": 1508, "Product": "Eco Max", "Amount": 7270, "Discount": "0.092", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Banking", "Channel": "Direct", "Customer": "Mercury Solar", }, { "Id": 1509, "Product": "EnviroCare", "Amount": 5060, "Discount": "0.1085714285714285714285714286", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1510, "Product": "Eco Max", "Amount": 1830, "Discount": "0.268", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Telecom", "Channel": "Retail", "Customer": "Building Management Inc", }, { "Id": 1511, "Product": "Eco Supreme", "Amount": 1680, "Discount": "0.16", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Manufacturing", "Channel": "Consultants", "Customer": "Health Plus Inc", }, { "Id": 1512, "Product": "EnviroCare", "Amount": 3340, "Discount": "0.0914285714285714285714285714", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Supply Warehous", }, { "Id": 1513, "Product": "SolarMax", "Amount": 6280, "Discount": "0.2088888888888888888888888889", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "Direct", "Customer": "Get Solar Inc", }, { "Id": 1514, "Product": "Eco Max", "Amount": 4720, "Discount": "0.112", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Direct", "Customer": "Energy Systems", }, { "Id": 1515, "Product": "SolarMax", "Amount": 6290, "Discount": "0.2044444444444444444444444444", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Arthur & Sons", }, { "Id": 1516, "Product": "Eco Max", "Amount": 2220, "Discount": "0.112", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "Direct", "Customer": "Smith & Co", }, { "Id": 1517, "Product": "Eco Supreme", "Amount": 1400, "Discount": "0.3", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "Johnson & Assoc", }, { "Id": 1518, "Product": "SolarMax", "Amount": 6380, "Discount": "0.1644444444444444444444444444", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Resellers", "Customer": "Beacon Systems", }, { "Id": 1519, "Product": "SolarOne", "Amount": 2430, "Discount": "0.38", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Consultants", "Customer": "System Integrators", }, { "Id": 1520, "Product": "Eco Max", "Amount": 4410, "Discount": "0.236", "SaleDate": "2024-05-15T00:00:00", "Region": "Africa", "Sector": "Insurance", "Channel": "Direct", "Customer": "McCord Builders", }, { "Id": 1521, "Product": "Eco Supreme", "Amount": 7280, "Discount": "0.36", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Environment Solar", }, { "Id": 1522, "Product": "SolarOne", "Amount": 4020, "Discount": "0.32", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Health", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 1523, "Product": "Eco Max", "Amount": 6990, "Discount": "0.204", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Retail", "Customer": "Gemini Stores", }, { "Id": 1524, "Product": "Eco Supreme", "Amount": 3890, "Discount": "0.055", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Banking", "Channel": "Direct", "Customer": "System Integrators", }, { "Id": 1525, "Product": "Eco Supreme", "Amount": 3720, "Discount": "0.14", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Insurance", "Channel": "Resellers", "Customer": "Solar Warehouse", }, { "Id": 1526, "Product": "Eco Max", "Amount": 9770, "Discount": "0.092", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Columbia Solar", }, { "Id": 1527, "Product": "Eco Max", "Amount": 7190, "Discount": "0.124", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Mercury Solar", }, { "Id": 1528, "Product": "Eco Max", "Amount": 9900, "Discount": "0.04", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "VARs", "Customer": "Green Energy Inc", }, { "Id": 1529, "Product": "SolarMax", "Amount": 8360, "Discount": "0.2844444444444444444444444444", "SaleDate": "2024-05-15T00:00:00", "Region": "Africa", "Sector": "Health", "Channel": "Retail", "Customer": "Solar Warehouse", }, { "Id": 1530, "Product": "EnviroCare", "Amount": 2980, "Discount": "0.2971428571428571428571428571", "SaleDate": "2024-05-15T00:00:00", "Region": "South America", "Sector": "Insurance", "Channel": "VARs", "Customer": "Apollo Inc", }, { "Id": 1531, "Product": "Eco Max", "Amount": 2400, "Discount": "0.04", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Health", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 1532, "Product": "Eco Supreme", "Amount": 1670, "Discount": "0.165", "SaleDate": "2024-05-15T00:00:00", "Region": "North America", "Sector": "Manufacturing", "Channel": "Resellers", "Customer": "Energy Systems", }, { "Id": 1533, "Product": "SolarMax", "Amount": 1750, "Discount": "0.2222222222222222222222222222", "SaleDate": "2024-05-15T00:00:00", "Region": "Europe", "Sector": "Insurance", "Channel": "VARs", "Customer": "Gemini Stores", }, { "Id": 1534, "Product": "Eco Max", "Amount": 1790, "Discount": "0.284", "SaleDate": "2024-05-15T00:00:00", "Region": "Asia", "Sector": "Banking", "Channel": "Retail", "Customer": "Health Plus Inc", }, { "Id": 1535, "Product": "Eco Max", "Amount": 2270, "Discount": "0.092", "SaleDate": "2024-05-15T00:00:00", "Region": "Australia", "Sector": "Insurance", "Channel": "Direct", "Customer": "Apollo Inc", }, ];
window.exports = window.exports || {}; window.config = { transpiler: 'ts', typescriptOptions: { module: 'system', emitDecoratorMetadata: true, experimentalDecorators: true, jsx: 'react', }, meta: { 'react': { 'esModule': true, }, 'typescript': { 'exports': 'ts', }, 'devextreme/time_zone_utils.js': { 'esModule': true, }, 'devextreme/localization.js': { 'esModule': true, }, 'devextreme/viz/palette.js': { 'esModule': true, }, 'openai': { 'esModule': true, }, }, paths: { 'npm:': 'https://cdn.jsdelivr.net/npm/', 'bundles:': '../../../../bundles/', 'externals:': '../../../../bundles/externals/', }, defaultExtension: 'js', map: { 'ts': 'npm:plugin-typescript@8.0.0/lib/plugin.js', 'typescript': 'npm:typescript@4.2.4/lib/typescript.js', 'jszip': 'npm:jszip@3.10.1/dist/jszip.min.js', 'react': 'npm:react@17.0.2/umd/react.development.js', 'react-dom': 'npm:react-dom@17.0.2/umd/react-dom.development.js', 'prop-types': 'npm:prop-types/prop-types.js', 'rrule': 'npm:rrule@2.6.4/dist/es5/rrule.js', 'luxon': 'npm:luxon@3.4.4/build/global/luxon.min.js', 'es6-object-assign': 'npm:es6-object-assign', 'devextreme': 'npm:devextreme@link:../../packages/devextreme/artifacts/npm/devextreme/cjs', 'devextreme-react': 'npm:devextreme-react@link:../../packages/devextreme-react/npm/cjs', 'devextreme-quill': 'npm:devextreme-quill@1.7.7/dist/dx-quill.min.js', 'devexpress-diagram': 'npm:devexpress-diagram@2.2.24/dist/dx-diagram.js', 'devexpress-gantt': 'npm:devexpress-gantt@4.1.64/dist/dx-gantt.js', 'inferno': 'npm:inferno@8.2.3/dist/inferno.min.js', 'inferno-compat': 'npm:inferno-compat/dist/inferno-compat.min.js', 'inferno-create-element': 'npm:inferno-create-element@8.2.3/dist/inferno-create-element.min.js', 'inferno-dom': 'npm:inferno-dom/dist/inferno-dom.min.js', 'inferno-hydrate': 'npm:inferno-hydrate/dist/inferno-hydrate.min.js', 'inferno-clone-vnode': 'npm:inferno-clone-vnode/dist/inferno-clone-vnode.min.js', 'inferno-create-class': 'npm:inferno-create-class/dist/inferno-create-class.min.js', 'inferno-extras': 'npm:inferno-extras/dist/inferno-extras.min.js', '@preact/signals-core': 'npm:@preact/signals-core@1.8.0/dist/signals-core.min.js', 'devextreme-cldr-data': 'npm:devextreme-cldr-data@1.0.3', // SystemJS plugins 'plugin-babel': 'npm:systemjs-plugin-babel@0.0.25/plugin-babel.js', 'systemjs-babel-build': 'npm:systemjs-plugin-babel@0.0.25/systemjs-babel-browser.js', // Prettier 'prettier/standalone': 'npm:prettier@2.8.8/standalone.js', 'prettier/parser-html': 'npm:prettier@2.8.8/parser-html.js', }, packages: { 'devextreme': { defaultExtension: 'js', }, 'devextreme-react': { main: 'index.js', }, 'devextreme-react/common': { main: 'index.js', }, 'devextreme/events/utils': { main: 'index', }, 'devextreme/common/core/events/utils': { main: 'index', }, 'devextreme/localization/messages': { format: 'json', defaultExtension: 'json', }, 'devextreme/events': { main: 'index', }, 'es6-object-assign': { main: './index.js', defaultExtension: 'js', }, }, packageConfigPaths: [ 'npm:@devextreme/*/package.json', ], babelOptions: { sourceMaps: false, stage0: true, react: true, }, }; window.process = { env: { NODE_ENV: 'production', }, }; System.config(window.config); // eslint-disable-next-line const useTgzInCSB = ['openai'];
import React from 'react'; import Bullet, { Font, Margin, Size, Tooltip, } from 'devextreme-react/bullet'; const customizeTooltip = (data) => ({ text: `${parseInt(data.value, 10)}%`, }); const DiscountCell = (cellData) => ( <Bullet showTarget={false} showZeroLevel={true} value={cellData.value * 100} startScaleValue={0} endScaleValue={100} > <Size width={150} height={35} /> <Margin top={5} bottom={0} left={5} /> <Tooltip enabled={true} paddingTopBottom={2} zIndex={5} customizeTooltip={customizeTooltip} > <Font size={18} /> </Tooltip> </Bullet> ); export default DiscountCell;
import React from 'react'; import ReactDOM from 'react-dom'; import App from './App.js'; ReactDOM.render(<App />, document.getElementById('app'));
export const sales = [ { Id: 1, Product: 'Eco Supreme', Amount: 1300, Discount: '0.35', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 2, Product: 'Eco Max', Amount: 4550, Discount: '0.18', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Renewable Supplies', }, { Id: 3, Product: 'SolarOne', Amount: 4410, Discount: '0.06', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 4, Product: 'SolarMax', Amount: 8930, Discount: '0.0311111111111111111111111111', SaleDate: '2024-05-10T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 5, Product: 'SolarMax', Amount: 4150, Discount: '0.1555555555555555555555555556', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 6, Product: 'Eco Max', Amount: 2280, Discount: '0.088', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 7, Product: 'Eco Supreme', Amount: 5400, Discount: '0.3', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 8, Product: 'Eco Supreme', Amount: 1410, Discount: '0.295', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 9, Product: 'Eco Supreme', Amount: 1850, Discount: '0.075', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 10, Product: 'Eco Max', Amount: 9360, Discount: '0.256', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 11, Product: 'SolarMax', Amount: 6390, Discount: '0.16', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 12, Product: 'Eco Max', Amount: 2220, Discount: '0.112', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 13, Product: 'Eco Max', Amount: 1910, Discount: '0.236', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 14, Product: 'EnviroCare', Amount: 1230, Discount: '0.2971428571428571428571428571', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 15, Product: 'Eco Max', Amount: 1890, Discount: '0.244', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 16, Product: 'Eco Max', Amount: 4560, Discount: '0.176', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 17, Product: 'SolarMax', Amount: 4130, Discount: '0.1644444444444444444444444444', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Arthur & Sons', }, { Id: 18, Product: 'Eco Max', Amount: 4670, Discount: '0.132', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 19, Product: 'SolarMax', Amount: 6180, Discount: '0.2533333333333333333333333333', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 20, Product: 'Eco Supreme', Amount: 1260, Discount: '0.37', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 21, Product: 'Eco Supreme', Amount: 1710, Discount: '0.145', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 22, Product: 'Eco Max', Amount: 9880, Discount: '0.048', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 23, Product: 'Eco Supreme', Amount: 5790, Discount: '0.105', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 24, Product: 'Eco Max', Amount: 2130, Discount: '0.148', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 25, Product: 'SolarMax', Amount: 8800, Discount: '0.0888888888888888888888888889', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 26, Product: 'Eco Supreme', Amount: 5370, Discount: '0.315', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 27, Product: 'SolarMax', Amount: 6250, Discount: '0.2222222222222222222222222222', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 28, Product: 'EnviroCare', Amount: 4790, Discount: '0.2628571428571428571428571429', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Green Energy Inc', }, { Id: 29, Product: 'SolarMax', Amount: 1840, Discount: '0.1822222222222222222222222222', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 30, Product: 'SolarMax', Amount: 4240, Discount: '0.1155555555555555555555555556', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 31, Product: 'Eco Supreme', Amount: 3490, Discount: '0.255', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Retail', Customer: 'Columbia Solar', }, { Id: 32, Product: 'Eco Max', Amount: 6760, Discount: '0.296', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 33, Product: 'Eco Max', Amount: 4820, Discount: '0.072', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 34, Product: 'Eco Supreme', Amount: 5490, Discount: '0.255', SaleDate: '2024-05-10T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 35, Product: 'Eco Max', Amount: 9300, Discount: '0.28', SaleDate: '2024-05-10T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 36, Product: 'Eco Max', Amount: 2210, Discount: '0.116', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Smith & Co', }, { Id: 37, Product: 'Eco Max', Amount: 7430, Discount: '0.028', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 38, Product: 'SolarMax', Amount: 6010, Discount: '0.3288888888888888888888888889', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Market Eco', }, { Id: 39, Product: 'Eco Supreme', Amount: 3490, Discount: '0.255', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Global Services', }, { Id: 40, Product: 'Eco Max', Amount: 7420, Discount: '0.032', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Retail', Customer: 'Beacon Systems', }, { Id: 41, Product: 'Eco Max', Amount: 7190, Discount: '0.124', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 42, Product: 'EnviroCare', Amount: 6280, Discount: '0.4114285714285714285714285714', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Retail', Customer: 'Environment Solar', }, { Id: 43, Product: 'Eco Max', Amount: 9790, Discount: '0.084', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 44, Product: 'EnviroCare', Amount: 6760, Discount: '0.1371428571428571428571428571', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 45, Product: 'SolarMax', Amount: 6530, Discount: '0.0977777777777777777777777778', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'Supply Warehous', }, { Id: 46, Product: 'Eco Max', Amount: 9560, Discount: '0.176', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 47, Product: 'Eco Supreme', Amount: 5330, Discount: '0.335', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 48, Product: 'Eco Max', Amount: 9380, Discount: '0.248', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 49, Product: 'Eco Max', Amount: 2330, Discount: '0.068', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 50, Product: 'Eco Max', Amount: 2110, Discount: '0.156', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Smith & Co', }, { Id: 51, Product: 'SolarOne', Amount: 2330, Discount: '0.4466666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Building Management Inc', }, { Id: 52, Product: 'EnviroCare', Amount: 1580, Discount: '0.0971428571428571428571428571', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 53, Product: 'SolarMax', Amount: 2000, Discount: '0.1111111111111111111111111111', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 54, Product: 'Eco Supreme', Amount: 1900, Discount: '0.05', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Building Management Inc', }, { Id: 55, Product: 'SolarMax', Amount: 6150, Discount: '0.2666666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 56, Product: 'Eco Supreme', Amount: 1740, Discount: '0.13', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'Market Eco', }, { Id: 57, Product: 'Eco Max', Amount: 4520, Discount: '0.192', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 58, Product: 'Eco Max', Amount: 2440, Discount: '0.024', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 59, Product: 'Eco Max', Amount: 2080, Discount: '0.168', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 60, Product: 'Eco Max', Amount: 7430, Discount: '0.028', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 61, Product: 'SolarMax', Amount: 1610, Discount: '0.2844444444444444444444444444', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 62, Product: 'SolarMax', Amount: 1980, Discount: '0.12', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Retail', Customer: 'Smith & Co', }, { Id: 63, Product: 'Eco Max', Amount: 7230, Discount: '0.108', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 64, Product: 'Eco Max', Amount: 6930, Discount: '0.228', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 65, Product: 'Eco Supreme', Amount: 7560, Discount: '0.22', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Retail', Customer: 'Gemini Stores', }, { Id: 66, Product: 'Eco Supreme', Amount: 1840, Discount: '0.08', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 67, Product: 'Eco Supreme', Amount: 7550, Discount: '0.225', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 68, Product: 'SolarMax', Amount: 1660, Discount: '0.2622222222222222222222222222', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Smith & Co', }, { Id: 69, Product: 'Eco Supreme', Amount: 5330, Discount: '0.335', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 70, Product: 'EnviroCare', Amount: 6660, Discount: '0.1942857142857142857142857143', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 71, Product: 'Eco Supreme', Amount: 1560, Discount: '0.22', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 72, Product: 'Eco Supreme', Amount: 7540, Discount: '0.23', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 73, Product: 'Eco Max', Amount: 2260, Discount: '0.096', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Renewable Supplies', }, { Id: 74, Product: 'SolarMax', Amount: 1920, Discount: '0.1466666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 75, Product: 'Eco Max', Amount: 2020, Discount: '0.192', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 76, Product: 'Eco Supreme', Amount: 3690, Discount: '0.155', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 77, Product: 'SolarMax', Amount: 6500, Discount: '0.1111111111111111111111111111', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 78, Product: 'Eco Supreme', Amount: 7510, Discount: '0.245', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 79, Product: 'SolarOne', Amount: 2540, Discount: '0.3066666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Solar Warehouse', }, { Id: 80, Product: 'Eco Max', Amount: 2330, Discount: '0.068', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 81, Product: 'Eco Supreme', Amount: 1380, Discount: '0.31', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 82, Product: 'Eco Max', Amount: 6930, Discount: '0.228', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 83, Product: 'Eco Max', Amount: 1950, Discount: '0.22', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 84, Product: 'Eco Max', Amount: 4850, Discount: '0.06', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Global Services', }, { Id: 85, Product: 'Eco Max', Amount: 4840, Discount: '0.064', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 86, Product: 'Eco Max', Amount: 4790, Discount: '0.084', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 87, Product: 'EnviroCare Max', Amount: 8340, Discount: '0.0214285714285714285714285714', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 88, Product: 'EnviroCare', Amount: 1060, Discount: '0.3942857142857142857142857143', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 89, Product: 'SolarOne', Amount: 2450, Discount: '0.3666666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Global Services', }, { Id: 90, Product: 'Eco Max', Amount: 2140, Discount: '0.144', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 91, Product: 'Eco Max', Amount: 4760, Discount: '0.096', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 92, Product: 'Eco Max', Amount: 4620, Discount: '0.152', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 93, Product: 'SolarMax', Amount: 1830, Discount: '0.1866666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 94, Product: 'Eco Max', Amount: 1960, Discount: '0.216', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 95, Product: 'Eco Max', Amount: 2330, Discount: '0.068', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 96, Product: 'Eco Max', Amount: 6940, Discount: '0.224', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 97, Product: 'EnviroCare Max', Amount: 5540, Discount: '0.0214285714285714285714285714', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Building Management Inc', }, { Id: 98, Product: 'EnviroCare', Amount: 1530, Discount: '0.1257142857142857142857142857', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Market Eco', }, { Id: 99, Product: 'SolarMax', Amount: 8480, Discount: '0.2311111111111111111111111111', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'VARs', Customer: 'McCord Builders', }, { Id: 100, Product: 'SolarMax', Amount: 4420, Discount: '0.0355555555555555555555555556', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 101, Product: 'SolarOne', Amount: 1410, Discount: '0.06', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Global Services', }, { Id: 102, Product: 'SolarMax', Amount: 6190, Discount: '0.2488888888888888888888888889', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 103, Product: 'SolarMax', Amount: 4380, Discount: '0.0533333333333333333333333333', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Get Solar Inc', }, { Id: 104, Product: 'Eco Max', Amount: 4310, Discount: '0.276', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 105, Product: 'Eco Max', Amount: 9800, Discount: '0.08', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 106, Product: 'Eco Max', Amount: 7090, Discount: '0.164', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Renewable Supplies', }, { Id: 107, Product: 'Eco Max', Amount: 2310, Discount: '0.076', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 108, Product: 'Eco Supreme', Amount: 1520, Discount: '0.24', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'VARs', Customer: 'Smith & Co', }, { Id: 109, Product: 'Eco Max', Amount: 7350, Discount: '0.06', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Arthur & Sons', }, { Id: 110, Product: 'EnviroCare', Amount: 1340, Discount: '0.2342857142857142857142857143', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Retail', Customer: 'Supply Warehous', }, { Id: 111, Product: 'SolarOne', Amount: 960, Discount: '0.36', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 112, Product: 'SolarMax', Amount: 8810, Discount: '0.0844444444444444444444444444', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 113, Product: 'SolarMax', Amount: 8450, Discount: '0.2444444444444444444444444444', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 114, Product: 'Eco Max', Amount: 1760, Discount: '0.296', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 115, Product: 'EnviroCare', Amount: 1500, Discount: '0.1428571428571428571428571429', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 116, Product: 'Eco Supreme', Amount: 7660, Discount: '0.17', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 117, Product: 'SolarMax', Amount: 4080, Discount: '0.1866666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 118, Product: 'Eco Supreme', Amount: 3500, Discount: '0.25', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'McCord Builders', }, { Id: 119, Product: 'Eco Supreme', Amount: 7340, Discount: '0.33', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 120, Product: 'Eco Max', Amount: 4910, Discount: '0.036', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 121, Product: 'Eco Max', Amount: 7020, Discount: '0.192', SaleDate: '2024-05-10T00:00:00', Region: 'Africa', Sector: 'Banking', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 122, Product: 'Eco Max', Amount: 9900, Discount: '0.04', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 123, Product: 'Eco Max', Amount: 9390, Discount: '0.244', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 124, Product: 'Eco Max', Amount: 9660, Discount: '0.136', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 125, Product: 'Eco Max', Amount: 9830, Discount: '0.068', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 126, Product: 'Eco Max', Amount: 1850, Discount: '0.26', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 127, Product: 'Eco Max', Amount: 9350, Discount: '0.26', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 128, Product: 'Eco Max', Amount: 4280, Discount: '0.288', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 129, Product: 'SolarMax', Amount: 4030, Discount: '0.2088888888888888888888888889', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Green Energy Inc', }, { Id: 130, Product: 'EnviroCare', Amount: 2790, Discount: '0.4057142857142857142857142857', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 131, Product: 'Eco Supreme', Amount: 3870, Discount: '0.065', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 132, Product: 'SolarMax', Amount: 8350, Discount: '0.2888888888888888888888888889', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 133, Product: 'Eco Max', Amount: 4270, Discount: '0.292', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 134, Product: 'SolarMax', Amount: 3800, Discount: '0.3111111111111111111111111111', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 135, Product: 'Eco Supreme', Amount: 3260, Discount: '0.37', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 136, Product: 'Eco Max', Amount: 9770, Discount: '0.092', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 137, Product: 'Eco Max', Amount: 2010, Discount: '0.196', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 138, Product: 'EnviroCare Max', Amount: 2430, Discount: '0.1321428571428571428571428571', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Retail', Customer: 'McCord Builders', }, { Id: 139, Product: 'Eco Max', Amount: 2110, Discount: '0.156', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 140, Product: 'Eco Supreme', Amount: 1750, Discount: '0.125', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 141, Product: 'SolarMax', Amount: 6230, Discount: '0.2311111111111111111111111111', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 142, Product: 'Eco Supreme', Amount: 3590, Discount: '0.205', SaleDate: '2024-05-10T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 143, Product: 'Eco Supreme', Amount: 1870, Discount: '0.065', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 144, Product: 'Eco Supreme', Amount: 5470, Discount: '0.265', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Global Services', }, { Id: 145, Product: 'SolarOne', Amount: 5480, Discount: '0.3466666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Building Management Inc', }, { Id: 146, Product: 'Eco Max', Amount: 7150, Discount: '0.14', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 147, Product: 'Eco Supreme', Amount: 1810, Discount: '0.095', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Resellers', Customer: 'Building Management Inc', }, { Id: 148, Product: 'Eco Max', Amount: 9460, Discount: '0.216', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Building Management Inc', }, { Id: 149, Product: 'Eco Max', Amount: 7280, Discount: '0.088', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 150, Product: 'Eco Max', Amount: 9630, Discount: '0.148', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 151, Product: 'Eco Max', Amount: 9280, Discount: '0.288', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 152, Product: 'SolarMax', Amount: 4270, Discount: '0.1022222222222222222222222222', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 153, Product: 'Eco Supreme', Amount: 5870, Discount: '0.065', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 154, Product: 'Eco Supreme', Amount: 3640, Discount: '0.18', SaleDate: '2024-05-10T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 155, Product: 'Eco Max', Amount: 7080, Discount: '0.168', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 156, Product: 'Eco Supreme', Amount: 3620, Discount: '0.19', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Get Solar Inc', }, { Id: 157, Product: 'Eco Max', Amount: 4890, Discount: '0.044', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 158, Product: 'Eco Max', Amount: 2410, Discount: '0.036', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 159, Product: 'Eco Supreme', Amount: 3810, Discount: '0.095', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Health Plus Inc', }, { Id: 160, Product: 'Eco Max', Amount: 4940, Discount: '0.024', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Building Management Inc', }, { Id: 161, Product: 'Eco Supreme', Amount: 7760, Discount: '0.12', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 162, Product: 'Eco Supreme', Amount: 1560, Discount: '0.22', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 163, Product: 'Eco Max', Amount: 4530, Discount: '0.188', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 164, Product: 'Eco Max', Amount: 6770, Discount: '0.292', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 165, Product: 'SolarOne', Amount: 2750, Discount: '0.1666666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 166, Product: 'Eco Max', Amount: 2200, Discount: '0.12', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 167, Product: 'SolarMax', Amount: 1720, Discount: '0.2355555555555555555555555556', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'Get Solar Inc', }, { Id: 168, Product: 'SolarMax', Amount: 8470, Discount: '0.2355555555555555555555555556', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 169, Product: 'SolarOne', Amount: 1270, Discount: '0.1533333333333333333333333333', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'Environment Solar', }, { Id: 170, Product: 'Eco Max', Amount: 4500, Discount: '0.2', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 171, Product: 'Eco Max', Amount: 9920, Discount: '0.032', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Global Services', }, { Id: 172, Product: 'SolarMax', Amount: 8350, Discount: '0.2888888888888888888888888889', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Building Management Inc', }, { Id: 173, Product: 'Eco Supreme', Amount: 1660, Discount: '0.17', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 174, Product: 'EnviroCare', Amount: 6750, Discount: '0.1428571428571428571428571429', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 175, Product: 'Eco Supreme', Amount: 5530, Discount: '0.235', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 176, Product: 'SolarMax', Amount: 8700, Discount: '0.1333333333333333333333333333', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 177, Product: 'Eco Max', Amount: 4390, Discount: '0.244', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 178, Product: 'EnviroCare', Amount: 4690, Discount: '0.32', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 179, Product: 'Eco Max', Amount: 9480, Discount: '0.208', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 180, Product: 'Eco Supreme', Amount: 5880, Discount: '0.06', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 181, Product: 'Eco Max', Amount: 2220, Discount: '0.112', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 182, Product: 'Eco Max', Amount: 4830, Discount: '0.068', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 183, Product: 'Eco Max', Amount: 2390, Discount: '0.044', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 184, Product: 'Eco Max', Amount: 4380, Discount: '0.248', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 185, Product: 'Eco Supreme', Amount: 5590, Discount: '0.205', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 186, Product: 'Eco Supreme', Amount: 3810, Discount: '0.095', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 187, Product: 'Eco Supreme', Amount: 5460, Discount: '0.27', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 188, Product: 'Eco Max', Amount: 1790, Discount: '0.284', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 189, Product: 'Eco Supreme', Amount: 7450, Discount: '0.275', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 190, Product: 'SolarMax', Amount: 1920, Discount: '0.1466666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 191, Product: 'Eco Max', Amount: 7040, Discount: '0.184', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 192, Product: 'Eco Max', Amount: 9540, Discount: '0.184', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 193, Product: 'Eco Supreme', Amount: 5760, Discount: '0.12', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 194, Product: 'Eco Max', Amount: 2240, Discount: '0.104', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 195, Product: 'Eco Supreme', Amount: 7460, Discount: '0.27', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Global Services', }, { Id: 196, Product: 'EnviroCare', Amount: 1070, Discount: '0.3885714285714285714285714286', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Retail', Customer: 'Health Plus Inc', }, { Id: 197, Product: 'Eco Max', Amount: 2370, Discount: '0.052', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Green Energy Inc', }, { Id: 198, Product: 'EnviroCare', Amount: 6300, Discount: '0.4', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 199, Product: 'EnviroCare', Amount: 6560, Discount: '0.2514285714285714285714285714', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 200, Product: 'Eco Supreme', Amount: 3510, Discount: '0.245', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Smith & Co', }, { Id: 201, Product: 'Eco Max', Amount: 9480, Discount: '0.208', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 202, Product: 'EnviroCare', Amount: 1050, Discount: '0.4', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 203, Product: 'SolarMax', Amount: 1620, Discount: '0.28', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 204, Product: 'SolarMax', Amount: 8740, Discount: '0.1155555555555555555555555556', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Green Energy Inc', }, { Id: 205, Product: 'Eco Supreme', Amount: 3820, Discount: '0.09', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Renewable Supplies', }, { Id: 206, Product: 'Eco Max', Amount: 6910, Discount: '0.236', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 207, Product: 'Eco Max', Amount: 1790, Discount: '0.284', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 208, Product: 'EnviroCare Max', Amount: 10630, Discount: '0.2035714285714285714285714286', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Building Management Inc', }, { Id: 209, Product: 'Eco Max', Amount: 9530, Discount: '0.188', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 210, Product: 'Eco Max', Amount: 9720, Discount: '0.112', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 211, Product: 'EnviroCare', Amount: 6340, Discount: '0.3771428571428571428571428571', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 212, Product: 'Eco Supreme', Amount: 3640, Discount: '0.18', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Retail', Customer: 'Building Management Inc', }, { Id: 213, Product: 'Eco Max', Amount: 2020, Discount: '0.192', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 214, Product: 'Eco Supreme', Amount: 3500, Discount: '0.25', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 215, Product: 'Eco Max', Amount: 2110, Discount: '0.156', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'VARs', Customer: 'Smith & Co', }, { Id: 216, Product: 'Eco Supreme', Amount: 7440, Discount: '0.28', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 217, Product: 'Eco Supreme', Amount: 3370, Discount: '0.315', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 218, Product: 'SolarMax', Amount: 8910, Discount: '0.04', SaleDate: '2024-05-10T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 219, Product: 'SolarMax', Amount: 6480, Discount: '0.12', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 220, Product: 'Eco Max', Amount: 7270, Discount: '0.092', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 221, Product: 'SolarMax', Amount: 2090, Discount: '0.0711111111111111111111111111', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 222, Product: 'Eco Supreme', Amount: 3310, Discount: '0.345', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 223, Product: 'Eco Max', Amount: 4410, Discount: '0.236', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 224, Product: 'Eco Max', Amount: 4750, Discount: '0.1', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 225, Product: 'Eco Max', Amount: 9770, Discount: '0.092', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 226, Product: 'SolarMax', Amount: 3770, Discount: '0.3244444444444444444444444444', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 227, Product: 'SolarOne', Amount: 860, Discount: '0.4266666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 228, Product: 'Eco Supreme', Amount: 3310, Discount: '0.345', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 229, Product: 'Eco Max', Amount: 9580, Discount: '0.168', SaleDate: '2024-05-10T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Direct', Customer: 'Global Services', }, { Id: 230, Product: 'Eco Supreme', Amount: 1950, Discount: '0.025', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 231, Product: 'SolarMax', Amount: 6060, Discount: '0.3066666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 232, Product: 'Eco Max', Amount: 1820, Discount: '0.272', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 233, Product: 'Eco Max', Amount: 2220, Discount: '0.112', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 234, Product: 'Eco Supreme', Amount: 7720, Discount: '0.14', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 235, Product: 'EnviroCare', Amount: 6690, Discount: '0.1771428571428571428571428571', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Retail', Customer: 'Mercury Solar', }, { Id: 236, Product: 'Eco Max', Amount: 1920, Discount: '0.232', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 237, Product: 'SolarMax', Amount: 8440, Discount: '0.2488888888888888888888888889', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 238, Product: 'Eco Supreme', Amount: 7280, Discount: '0.36', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 239, Product: 'Eco Max', Amount: 4730, Discount: '0.108', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Renewable Supplies', }, { Id: 240, Product: 'Eco Max', Amount: 7420, Discount: '0.032', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 241, Product: 'Eco Supreme', Amount: 3440, Discount: '0.28', SaleDate: '2024-05-10T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 242, Product: 'SolarMax', Amount: 6130, Discount: '0.2755555555555555555555555556', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 243, Product: 'SolarMax', Amount: 8840, Discount: '0.0711111111111111111111111111', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 244, Product: 'Eco Max', Amount: 7420, Discount: '0.032', SaleDate: '2024-05-10T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 245, Product: 'SolarMax', Amount: 8940, Discount: '0.0266666666666666666666666667', SaleDate: '2024-05-10T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Renewable Supplies', }, { Id: 246, Product: 'Eco Supreme', Amount: 7600, Discount: '0.2', SaleDate: '2024-05-10T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 247, Product: 'Eco Max', Amount: 9590, Discount: '0.164', SaleDate: '2024-05-10T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Columbia Solar', }, { Id: 248, Product: 'EnviroCare', Amount: 4690, Discount: '0.32', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 249, Product: 'Eco Max', Amount: 7100, Discount: '0.16', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 250, Product: 'Eco Supreme', Amount: 5510, Discount: '0.245', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 251, Product: 'Eco Supreme', Amount: 7760, Discount: '0.12', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 252, Product: 'SolarMax', Amount: 6050, Discount: '0.3111111111111111111111111111', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 253, Product: 'SolarMax', Amount: 8300, Discount: '0.3111111111111111111111111111', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'McCord Builders', }, { Id: 254, Product: 'SolarMax', Amount: 6330, Discount: '0.1866666666666666666666666667', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 255, Product: 'SolarMax', Amount: 1580, Discount: '0.2977777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 256, Product: 'Eco Supreme', Amount: 1730, Discount: '0.135', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 257, Product: 'SolarMax', Amount: 3910, Discount: '0.2622222222222222222222222222', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Mercury Solar', }, { Id: 258, Product: 'SolarMax', Amount: 4020, Discount: '0.2133333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 259, Product: 'Eco Supreme', Amount: 3540, Discount: '0.23', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 260, Product: 'SolarMax', Amount: 6400, Discount: '0.1555555555555555555555555556', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Global Services', }, { Id: 261, Product: 'Eco Max', Amount: 9350, Discount: '0.26', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 262, Product: 'Eco Max', Amount: 6980, Discount: '0.208', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 263, Product: 'Eco Max', Amount: 7040, Discount: '0.184', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 264, Product: 'SolarMax', Amount: 6620, Discount: '0.0577777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Columbia Solar', }, { Id: 265, Product: 'Eco Supreme', Amount: 1370, Discount: '0.315', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 266, Product: 'Eco Max', Amount: 4700, Discount: '0.12', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 267, Product: 'Eco Max', Amount: 4740, Discount: '0.104', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 268, Product: 'SolarMax', Amount: 8720, Discount: '0.1244444444444444444444444444', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 269, Product: 'Eco Supreme', Amount: 7460, Discount: '0.27', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 270, Product: 'Eco Supreme', Amount: 1450, Discount: '0.275', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Building Management Inc', }, { Id: 271, Product: 'SolarMax', Amount: 6080, Discount: '0.2977777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 272, Product: 'EnviroCare', Amount: 6780, Discount: '0.1257142857142857142857142857', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 273, Product: 'Eco Max', Amount: 7150, Discount: '0.14', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'VARs', Customer: 'Global Services', }, { Id: 274, Product: 'Eco Max', Amount: 9420, Discount: '0.232', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Smith & Co', }, { Id: 275, Product: 'Eco Supreme', Amount: 3880, Discount: '0.06', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 276, Product: 'Eco Max', Amount: 4800, Discount: '0.08', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 277, Product: 'EnviroCare', Amount: 1180, Discount: '0.3257142857142857142857142857', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 278, Product: 'SolarMax', Amount: 6200, Discount: '0.2444444444444444444444444444', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Retail', Customer: 'Renewable Supplies', }, { Id: 279, Product: 'EnviroCare', Amount: 5040, Discount: '0.12', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 280, Product: 'EnviroCare', Amount: 3240, Discount: '0.1485714285714285714285714286', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 281, Product: 'Eco Supreme', Amount: 3490, Discount: '0.255', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 282, Product: 'Eco Supreme', Amount: 3760, Discount: '0.12', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 283, Product: 'SolarOne', Amount: 5670, Discount: '0.22', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 284, Product: 'EnviroCare', Amount: 5060, Discount: '0.1085714285714285714285714286', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'McCord Builders', }, { Id: 285, Product: 'SolarMax', Amount: 1700, Discount: '0.2444444444444444444444444444', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 286, Product: 'SolarMax', Amount: 6160, Discount: '0.2622222222222222222222222222', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 287, Product: 'SolarOne', Amount: 5450, Discount: '0.3666666666666666666666666667', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 288, Product: 'SolarMax', Amount: 6170, Discount: '0.2577777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'Global Services', }, { Id: 289, Product: 'Eco Supreme', Amount: 5790, Discount: '0.105', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Energy', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 290, Product: 'Eco Max', Amount: 4490, Discount: '0.204', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 291, Product: 'Eco Max', Amount: 7070, Discount: '0.172', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 292, Product: 'Eco Max', Amount: 2130, Discount: '0.148', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 293, Product: 'Eco Supreme', Amount: 7470, Discount: '0.265', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 294, Product: 'Eco Supreme', Amount: 3760, Discount: '0.12', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 295, Product: 'Eco Max', Amount: 2080, Discount: '0.168', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 296, Product: 'Eco Max', Amount: 2140, Discount: '0.144', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 297, Product: 'SolarMax', Amount: 1880, Discount: '0.1644444444444444444444444444', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 298, Product: 'SolarOne', Amount: 1370, Discount: '0.0866666666666666666666666667', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Smith & Co', }, { Id: 299, Product: 'Eco Max', Amount: 7320, Discount: '0.072', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Global Services', }, { Id: 300, Product: 'Eco Supreme', Amount: 5580, Discount: '0.21', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 301, Product: 'SolarOne', Amount: 4200, Discount: '0.2', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 302, Product: 'SolarMax', Amount: 6320, Discount: '0.1911111111111111111111111111', SaleDate: '2024-05-11T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Mercury Solar', }, { Id: 303, Product: 'Eco Supreme', Amount: 5880, Discount: '0.06', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 304, Product: 'SolarMax', Amount: 1800, Discount: '0.2', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'McCord Builders', }, { Id: 305, Product: 'Eco Max', Amount: 2340, Discount: '0.064', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 306, Product: 'SolarOne', Amount: 2890, Discount: '0.0733333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'Africa', Sector: 'Banking', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 307, Product: 'EnviroCare', Amount: 1260, Discount: '0.28', SaleDate: '2024-05-11T00:00:00', Region: 'Africa', Sector: 'Banking', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 308, Product: 'Eco Max', Amount: 7280, Discount: '0.088', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 309, Product: 'Eco Max', Amount: 4500, Discount: '0.2', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Smith & Co', }, { Id: 310, Product: 'Eco Max', Amount: 4730, Discount: '0.108', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Market Eco', }, { Id: 311, Product: 'SolarMax', Amount: 6470, Discount: '0.1244444444444444444444444444', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 312, Product: 'EnviroCare', Amount: 5190, Discount: '0.0342857142857142857142857143', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 313, Product: 'Eco Max', Amount: 7230, Discount: '0.108', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 314, Product: 'Eco Max', Amount: 9850, Discount: '0.06', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 315, Product: 'EnviroCare', Amount: 6920, Discount: '0.0457142857142857142857142857', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 316, Product: 'Eco Max', Amount: 6920, Discount: '0.232', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 317, Product: 'Eco Supreme', Amount: 1360, Discount: '0.32', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 318, Product: 'Eco Supreme', Amount: 7480, Discount: '0.26', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Global Services', }, { Id: 319, Product: 'SolarMax', Amount: 1670, Discount: '0.2577777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Renewable Supplies', }, { Id: 320, Product: 'Eco Supreme', Amount: 5650, Discount: '0.175', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 321, Product: 'Eco Max', Amount: 1830, Discount: '0.268', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 322, Product: 'Eco Max', Amount: 6990, Discount: '0.204', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 323, Product: 'Eco Max', Amount: 6950, Discount: '0.22', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 324, Product: 'EnviroCare', Amount: 6550, Discount: '0.2571428571428571428571428571', SaleDate: '2024-05-11T00:00:00', Region: 'Africa', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 325, Product: 'SolarMax', Amount: 3790, Discount: '0.3155555555555555555555555556', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 326, Product: 'SolarMax', Amount: 4370, Discount: '0.0577777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Columbia Solar', }, { Id: 327, Product: 'Eco Supreme', Amount: 5770, Discount: '0.115', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 328, Product: 'Eco Max', Amount: 9440, Discount: '0.224', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Get Solar Inc', }, { Id: 329, Product: 'Eco Max', Amount: 9860, Discount: '0.056', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Mercury Solar', }, { Id: 330, Product: 'Eco Supreme', Amount: 3530, Discount: '0.235', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 331, Product: 'Eco Supreme', Amount: 1550, Discount: '0.225', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Smith & Co', }, { Id: 332, Product: 'EnviroCare', Amount: 1370, Discount: '0.2171428571428571428571428571', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 333, Product: 'Eco Supreme', Amount: 7420, Discount: '0.29', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 334, Product: 'Eco Max', Amount: 7110, Discount: '0.156', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 335, Product: 'SolarMax', Amount: 2010, Discount: '0.1066666666666666666666666667', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Market Eco', }, { Id: 336, Product: 'Eco Supreme', Amount: 1540, Discount: '0.23', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 337, Product: 'Eco Max', Amount: 1880, Discount: '0.248', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 338, Product: 'Eco Supreme', Amount: 1500, Discount: '0.25', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 339, Product: 'SolarOne', Amount: 5620, Discount: '0.2533333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Smith & Co', }, { Id: 340, Product: 'SolarOne', Amount: 3880, Discount: '0.4133333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 341, Product: 'SolarOne', Amount: 2500, Discount: '0.3333333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 342, Product: 'SolarMax', Amount: 3830, Discount: '0.2977777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Gemini Stores', }, { Id: 343, Product: 'Eco Max', Amount: 4860, Discount: '0.056', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 344, Product: 'SolarMax', Amount: 8540, Discount: '0.2044444444444444444444444444', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Retail', Customer: 'Get Solar Inc', }, { Id: 345, Product: 'Eco Supreme', Amount: 7440, Discount: '0.28', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 346, Product: 'Eco Max', Amount: 2230, Discount: '0.108', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 347, Product: 'SolarMax', Amount: 8900, Discount: '0.0444444444444444444444444444', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 348, Product: 'Eco Max', Amount: 9710, Discount: '0.116', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 349, Product: 'SolarMax', Amount: 3990, Discount: '0.2266666666666666666666666667', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 350, Product: 'Eco Supreme', Amount: 3420, Discount: '0.29', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Global Services', }, { Id: 351, Product: 'Eco Max', Amount: 1990, Discount: '0.204', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Retail', Customer: 'Beacon Systems', }, { Id: 352, Product: 'Eco Max', Amount: 2110, Discount: '0.156', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Get Solar Inc', }, { Id: 353, Product: 'Eco Max', Amount: 9660, Discount: '0.136', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 354, Product: 'Eco Max', Amount: 1870, Discount: '0.252', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 355, Product: 'Eco Max', Amount: 4470, Discount: '0.212', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 356, Product: 'Eco Max', Amount: 7300, Discount: '0.08', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 357, Product: 'SolarMax', Amount: 1540, Discount: '0.3155555555555555555555555556', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 358, Product: 'Eco Max', Amount: 9720, Discount: '0.112', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 359, Product: 'SolarMax', Amount: 4150, Discount: '0.1555555555555555555555555556', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'McCord Builders', }, { Id: 360, Product: 'SolarMax', Amount: 6360, Discount: '0.1733333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 361, Product: 'Eco Max', Amount: 9450, Discount: '0.22', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Global Services', }, { Id: 362, Product: 'EnviroCare', Amount: 1540, Discount: '0.12', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 363, Product: 'Eco Max', Amount: 7450, Discount: '0.02', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 364, Product: 'SolarMax', Amount: 8560, Discount: '0.1955555555555555555555555556', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 365, Product: 'Eco Max', Amount: 2090, Discount: '0.164', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Retail', Customer: 'Beacon Systems', }, { Id: 366, Product: 'SolarOne', Amount: 2320, Discount: '0.4533333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 367, Product: 'EnviroCare', Amount: 4980, Discount: '0.1542857142857142857142857143', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 368, Product: 'Eco Max', Amount: 4530, Discount: '0.188', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 369, Product: 'SolarMax', Amount: 3940, Discount: '0.2488888888888888888888888889', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 370, Product: 'SolarOne', Amount: 4210, Discount: '0.1933333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 371, Product: 'Eco Max', Amount: 9780, Discount: '0.088', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 372, Product: 'Eco Max', Amount: 7360, Discount: '0.056', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Green Energy Inc', }, { Id: 373, Product: 'SolarOne', Amount: 5410, Discount: '0.3933333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Retail', Customer: 'Apollo Inc', }, { Id: 374, Product: 'Eco Max', Amount: 4740, Discount: '0.104', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 375, Product: 'Eco Supreme', Amount: 5280, Discount: '0.36', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 376, Product: 'SolarMax', Amount: 3820, Discount: '0.3022222222222222222222222222', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 377, Product: 'SolarMax', Amount: 6620, Discount: '0.0577777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 378, Product: 'Eco Max', Amount: 6860, Discount: '0.256', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Supply Warehous', }, { Id: 379, Product: 'SolarMax', Amount: 8900, Discount: '0.0444444444444444444444444444', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 380, Product: 'Eco Max', Amount: 2090, Discount: '0.164', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 381, Product: 'Eco Supreme', Amount: 7730, Discount: '0.135', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 382, Product: 'Eco Max', Amount: 4540, Discount: '0.184', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 383, Product: 'EnviroCare', Amount: 3420, Discount: '0.0457142857142857142857142857', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Health Plus Inc', }, { Id: 384, Product: 'Eco Max', Amount: 1840, Discount: '0.264', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 385, Product: 'EnviroCare', Amount: 6340, Discount: '0.3771428571428571428571428571', SaleDate: '2024-05-11T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 386, Product: 'Eco Max', Amount: 9810, Discount: '0.076', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 387, Product: 'SolarMax', Amount: 4230, Discount: '0.12', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 388, Product: 'Eco Supreme', Amount: 5400, Discount: '0.3', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 389, Product: 'SolarMax', Amount: 8880, Discount: '0.0533333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 390, Product: 'Eco Supreme', Amount: 1850, Discount: '0.075', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Green Energy Inc', }, { Id: 391, Product: 'SolarMax', Amount: 6490, Discount: '0.1155555555555555555555555556', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 392, Product: 'Eco Max', Amount: 9310, Discount: '0.276', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 393, Product: 'SolarMax', Amount: 6280, Discount: '0.2088888888888888888888888889', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 394, Product: 'Eco Max', Amount: 7070, Discount: '0.172', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Arthur & Sons', }, { Id: 395, Product: 'Eco Supreme', Amount: 5910, Discount: '0.045', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 396, Product: 'SolarMax', Amount: 6110, Discount: '0.2844444444444444444444444444', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Solar Warehouse', }, { Id: 397, Product: 'SolarMax', Amount: 1800, Discount: '0.2', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 398, Product: 'Eco Supreme', Amount: 5390, Discount: '0.305', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Renewable Supplies', }, { Id: 399, Product: 'Eco Max', Amount: 9890, Discount: '0.044', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 400, Product: 'Eco Max', Amount: 6920, Discount: '0.232', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 401, Product: 'SolarMax', Amount: 4140, Discount: '0.16', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Resellers', Customer: 'Global Services', }, { Id: 402, Product: 'EnviroCare', Amount: 1420, Discount: '0.1885714285714285714285714286', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 403, Product: 'Eco Supreme', Amount: 7280, Discount: '0.36', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 404, Product: 'SolarMax', Amount: 1820, Discount: '0.1911111111111111111111111111', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 405, Product: 'Eco Max', Amount: 4750, Discount: '0.1', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 406, Product: 'Eco Supreme', Amount: 5860, Discount: '0.07', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 407, Product: 'Eco Supreme', Amount: 5520, Discount: '0.24', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 408, Product: 'Eco Max', Amount: 2320, Discount: '0.072', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Arthur & Sons', }, { Id: 409, Product: 'SolarMax', Amount: 6440, Discount: '0.1377777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 410, Product: 'Eco Max', Amount: 9680, Discount: '0.128', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 411, Product: 'Eco Max', Amount: 9510, Discount: '0.196', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 412, Product: 'Eco Max', Amount: 7100, Discount: '0.16', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 413, Product: 'Eco Supreme', Amount: 7550, Discount: '0.225', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 414, Product: 'Eco Max', Amount: 7120, Discount: '0.152', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 415, Product: 'Eco Supreme', Amount: 7260, Discount: '0.37', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 416, Product: 'EnviroCare Max', Amount: 10570, Discount: '0.225', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 417, Product: 'SolarMax', Amount: 3870, Discount: '0.28', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 418, Product: 'Eco Max', Amount: 4400, Discount: '0.24', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 419, Product: 'SolarMax', Amount: 1850, Discount: '0.1777777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 420, Product: 'Eco Supreme', Amount: 3700, Discount: '0.15', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Green Energy Inc', }, { Id: 421, Product: 'Eco Supreme', Amount: 1840, Discount: '0.08', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Retail', Customer: 'Arthur & Sons', }, { Id: 422, Product: 'SolarMax', Amount: 4250, Discount: '0.1111111111111111111111111111', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 423, Product: 'Eco Supreme', Amount: 1350, Discount: '0.325', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Green Energy Inc', }, { Id: 424, Product: 'Eco Max', Amount: 2270, Discount: '0.092', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 425, Product: 'Eco Max', Amount: 9580, Discount: '0.168', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 426, Product: 'Eco Supreme', Amount: 1460, Discount: '0.27', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 427, Product: 'SolarMax', Amount: 4240, Discount: '0.1155555555555555555555555556', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 428, Product: 'Eco Max', Amount: 2350, Discount: '0.06', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Green Energy Inc', }, { Id: 429, Product: 'Eco Max', Amount: 4720, Discount: '0.112', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Smith & Co', }, { Id: 430, Product: 'Eco Max', Amount: 9940, Discount: '0.024', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Building Management Inc', }, { Id: 431, Product: 'Eco Supreme', Amount: 3650, Discount: '0.175', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 432, Product: 'EnviroCare', Amount: 6670, Discount: '0.1885714285714285714285714286', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 433, Product: 'Eco Max', Amount: 9480, Discount: '0.208', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Global Services', }, { Id: 434, Product: 'Eco Max', Amount: 4730, Discount: '0.108', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Green Energy Inc', }, { Id: 435, Product: 'SolarMax', Amount: 8650, Discount: '0.1555555555555555555555555556', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 436, Product: 'SolarOne', Amount: 2500, Discount: '0.3333333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 437, Product: 'EnviroCare', Amount: 4790, Discount: '0.2628571428571428571428571429', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 438, Product: 'Eco Max', Amount: 7320, Discount: '0.072', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 439, Product: 'Eco Supreme', Amount: 5520, Discount: '0.24', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 440, Product: 'Eco Max', Amount: 9740, Discount: '0.104', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 441, Product: 'Eco Supreme', Amount: 5680, Discount: '0.16', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Retail', Customer: 'Gemini Stores', }, { Id: 442, Product: 'Eco Supreme', Amount: 1920, Discount: '0.04', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 443, Product: 'Eco Max', Amount: 4700, Discount: '0.12', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 444, Product: 'Eco Supreme', Amount: 5430, Discount: '0.285', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 445, Product: 'Eco Max', Amount: 7160, Discount: '0.136', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 446, Product: 'Eco Supreme', Amount: 5330, Discount: '0.335', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 447, Product: 'Eco Max', Amount: 6930, Discount: '0.228', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 448, Product: 'Eco Supreme', Amount: 7910, Discount: '0.045', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Solar Warehouse', }, { Id: 449, Product: 'Eco Max', Amount: 7210, Discount: '0.116', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Retail', Customer: 'McCord Builders', }, { Id: 450, Product: 'SolarMax', Amount: 8500, Discount: '0.2222222222222222222222222222', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 451, Product: 'SolarMax', Amount: 1830, Discount: '0.1866666666666666666666666667', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Renewable Supplies', }, { Id: 452, Product: 'EnviroCare', Amount: 1400, Discount: '0.2', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 453, Product: 'Eco Max', Amount: 9580, Discount: '0.168', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 454, Product: 'Eco Supreme', Amount: 1340, Discount: '0.33', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 455, Product: 'Eco Max', Amount: 7210, Discount: '0.116', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 456, Product: 'Eco Max', Amount: 9680, Discount: '0.128', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 457, Product: 'Eco Max', Amount: 1810, Discount: '0.276', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Retail', Customer: 'Environment Solar', }, { Id: 458, Product: 'Eco Max', Amount: 2130, Discount: '0.148', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 459, Product: 'Eco Max', Amount: 6990, Discount: '0.204', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 460, Product: 'Eco Supreme', Amount: 3880, Discount: '0.06', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Solar Warehouse', }, { Id: 461, Product: 'SolarMax', Amount: 8330, Discount: '0.2977777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 462, Product: 'SolarMax', Amount: 4140, Discount: '0.16', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 463, Product: 'SolarMax', Amount: 4380, Discount: '0.0533333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 464, Product: 'Eco Supreme', Amount: 3760, Discount: '0.12', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Mercury Solar', }, { Id: 465, Product: 'Eco Supreme', Amount: 7410, Discount: '0.295', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 466, Product: 'Eco Max', Amount: 4910, Discount: '0.036', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 467, Product: 'SolarMax', Amount: 1720, Discount: '0.2355555555555555555555555556', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Retail', Customer: 'McCord Builders', }, { Id: 468, Product: 'EnviroCare', Amount: 6600, Discount: '0.2285714285714285714285714286', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 469, Product: 'SolarOne', Amount: 5740, Discount: '0.1733333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 470, Product: 'Eco Supreme', Amount: 5510, Discount: '0.245', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 471, Product: 'Eco Max', Amount: 4920, Discount: '0.032', SaleDate: '2024-05-11T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 472, Product: 'Eco Max', Amount: 9790, Discount: '0.084', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 473, Product: 'SolarMax', Amount: 8510, Discount: '0.2177777777777777777777777778', SaleDate: '2024-05-11T00:00:00', Region: 'Africa', Sector: 'Banking', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 474, Product: 'Eco Supreme', Amount: 1920, Discount: '0.04', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 475, Product: 'Eco Supreme', Amount: 5640, Discount: '0.18', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 476, Product: 'Eco Max', Amount: 4780, Discount: '0.088', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 477, Product: 'Eco Supreme', Amount: 7260, Discount: '0.37', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 478, Product: 'EnviroCare', Amount: 2820, Discount: '0.3885714285714285714285714286', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 479, Product: 'SolarMax', Amount: 8680, Discount: '0.1422222222222222222222222222', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 480, Product: 'Eco Max', Amount: 4530, Discount: '0.188', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 481, Product: 'SolarMax', Amount: 6600, Discount: '0.0666666666666666666666666667', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Green Energy Inc', }, { Id: 482, Product: 'Eco Max', Amount: 7100, Discount: '0.16', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 483, Product: 'SolarMax', Amount: 6090, Discount: '0.2933333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Renewable Supplies', }, { Id: 484, Product: 'Eco Max', Amount: 9860, Discount: '0.056', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 485, Product: 'Eco Supreme', Amount: 3930, Discount: '0.035', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 486, Product: 'SolarMax', Amount: 8800, Discount: '0.0888888888888888888888888889', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Retail', Customer: 'Apollo Inc', }, { Id: 487, Product: 'Eco Supreme', Amount: 5820, Discount: '0.09', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Beacon Systems', }, { Id: 488, Product: 'Eco Max', Amount: 7300, Discount: '0.08', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 489, Product: 'SolarOne', Amount: 1140, Discount: '0.24', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Beacon Systems', }, { Id: 490, Product: 'SolarOne', Amount: 2690, Discount: '0.2066666666666666666666666667', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 491, Product: 'Eco Max', Amount: 9760, Discount: '0.096', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Solar Warehouse', }, { Id: 492, Product: 'Eco Max', Amount: 7430, Discount: '0.028', SaleDate: '2024-05-11T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 493, Product: 'Eco Max', Amount: 9930, Discount: '0.028', SaleDate: '2024-05-11T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 494, Product: 'Eco Supreme', Amount: 7890, Discount: '0.055', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Global Services', }, { Id: 495, Product: 'Eco Supreme', Amount: 7710, Discount: '0.145', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Arthur & Sons', }, { Id: 496, Product: 'Eco Supreme', Amount: 5430, Discount: '0.285', SaleDate: '2024-05-11T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'Resellers', Customer: 'McCord Builders', }, { Id: 497, Product: 'Eco Max', Amount: 6930, Discount: '0.228', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 498, Product: 'SolarOne', Amount: 1270, Discount: '0.1533333333333333333333333333', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 499, Product: 'SolarOne', Amount: 2900, Discount: '0.0666666666666666666666666667', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 500, Product: 'Eco Supreme', Amount: 5280, Discount: '0.36', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 501, Product: 'EnviroCare', Amount: 1360, Discount: '0.2228571428571428571428571429', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 502, Product: 'Eco Supreme', Amount: 1270, Discount: '0.365', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 503, Product: 'Eco Max', Amount: 7060, Discount: '0.176', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 504, Product: 'Eco Supreme', Amount: 1750, Discount: '0.125', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 505, Product: 'SolarOne', Amount: 950, Discount: '0.3666666666666666666666666667', SaleDate: '2024-05-11T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 506, Product: 'SolarOne', Amount: 1130, Discount: '0.2466666666666666666666666667', SaleDate: '2024-05-11T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 507, Product: 'Eco Max', Amount: 7230, Discount: '0.108', SaleDate: '2024-05-11T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 508, Product: 'SolarOne', Amount: 4170, Discount: '0.22', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 509, Product: 'Eco Max', Amount: 4810, Discount: '0.076', SaleDate: '2024-05-12T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 510, Product: 'EnviroCare', Amount: 2790, Discount: '0.4057142857142857142857142857', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 511, Product: 'Eco Supreme', Amount: 7420, Discount: '0.29', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Columbia Solar', }, { Id: 512, Product: 'Eco Max', Amount: 7430, Discount: '0.028', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 513, Product: 'SolarMax', Amount: 4390, Discount: '0.0488888888888888888888888889', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 514, Product: 'Eco Max', Amount: 4630, Discount: '0.148', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 515, Product: 'Eco Supreme', Amount: 5890, Discount: '0.055', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Columbia Solar', }, { Id: 516, Product: 'SolarMax', Amount: 3930, Discount: '0.2533333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 517, Product: 'Eco Max', Amount: 9410, Discount: '0.236', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 518, Product: 'Eco Max', Amount: 7060, Discount: '0.176', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 519, Product: 'Eco Supreme', Amount: 1620, Discount: '0.19', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 520, Product: 'Eco Max', Amount: 7010, Discount: '0.196', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Mercury Solar', }, { Id: 521, Product: 'SolarMax', Amount: 4180, Discount: '0.1422222222222222222222222222', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 522, Product: 'EnviroCare', Amount: 3080, Discount: '0.24', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'Smith & Co', }, { Id: 523, Product: 'SolarMax', Amount: 4260, Discount: '0.1066666666666666666666666667', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 524, Product: 'SolarMax', Amount: 6220, Discount: '0.2355555555555555555555555556', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Smith & Co', }, { Id: 525, Product: 'EnviroCare', Amount: 4580, Discount: '0.3828571428571428571428571429', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 526, Product: 'SolarOne', Amount: 2410, Discount: '0.3933333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 527, Product: 'Eco Max', Amount: 9860, Discount: '0.056', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 528, Product: 'SolarMax', Amount: 8880, Discount: '0.0533333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 529, Product: 'SolarMax', Amount: 1670, Discount: '0.2577777777777777777777777778', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 530, Product: 'Eco Max', Amount: 6960, Discount: '0.216', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 531, Product: 'Eco Supreme', Amount: 5790, Discount: '0.105', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 532, Product: 'Eco Max', Amount: 7420, Discount: '0.032', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 533, Product: 'EnviroCare', Amount: 6870, Discount: '0.0742857142857142857142857143', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 534, Product: 'SolarOne', Amount: 2760, Discount: '0.16', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 535, Product: 'Eco Supreme', Amount: 3510, Discount: '0.245', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 536, Product: 'Eco Max', Amount: 6790, Discount: '0.284', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Solar Warehouse', }, { Id: 537, Product: 'EnviroCare', Amount: 6410, Discount: '0.3371428571428571428571428571', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 538, Product: 'Eco Supreme', Amount: 3770, Discount: '0.115', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 539, Product: 'SolarMax', Amount: 6580, Discount: '0.0755555555555555555555555556', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 540, Product: 'Eco Max', Amount: 9500, Discount: '0.2', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 541, Product: 'Eco Supreme', Amount: 5650, Discount: '0.175', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 542, Product: 'Eco Max', Amount: 4630, Discount: '0.148', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 543, Product: 'Eco Max', Amount: 9700, Discount: '0.12', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Columbia Solar', }, { Id: 544, Product: 'SolarMax', Amount: 2140, Discount: '0.0488888888888888888888888889', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 545, Product: 'Eco Max', Amount: 4950, Discount: '0.02', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 546, Product: 'SolarMax', Amount: 8860, Discount: '0.0622222222222222222222222222', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 547, Product: 'SolarMax', Amount: 1730, Discount: '0.2311111111111111111111111111', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 548, Product: 'SolarMax', Amount: 8470, Discount: '0.2355555555555555555555555556', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 549, Product: 'SolarMax', Amount: 4340, Discount: '0.0711111111111111111111111111', SaleDate: '2024-05-12T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Retail', Customer: 'Supply Warehous', }, { Id: 550, Product: 'Eco Max', Amount: 2050, Discount: '0.18', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 551, Product: 'Eco Max', Amount: 7390, Discount: '0.044', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 552, Product: 'EnviroCare', Amount: 6570, Discount: '0.2457142857142857142857142857', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 553, Product: 'Eco Supreme', Amount: 5500, Discount: '0.25', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 554, Product: 'SolarMax', Amount: 2150, Discount: '0.0444444444444444444444444444', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'McCord Builders', }, { Id: 555, Product: 'EnviroCare', Amount: 4610, Discount: '0.3657142857142857142857142857', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 556, Product: 'Eco Max', Amount: 4410, Discount: '0.236', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Building Management Inc', }, { Id: 557, Product: 'Eco Max', Amount: 2400, Discount: '0.04', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 558, Product: 'SolarMax', Amount: 6560, Discount: '0.0844444444444444444444444444', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 559, Product: 'SolarOne', Amount: 4450, Discount: '0.0333333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 560, Product: 'SolarMax', Amount: 8810, Discount: '0.0844444444444444444444444444', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 561, Product: 'Eco Supreme', Amount: 1720, Discount: '0.14', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Market Eco', }, { Id: 562, Product: 'Eco Supreme', Amount: 3540, Discount: '0.23', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Health Plus Inc', }, { Id: 563, Product: 'Eco Supreme', Amount: 3910, Discount: '0.045', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 564, Product: 'Eco Max', Amount: 6760, Discount: '0.296', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Renewable Supplies', }, { Id: 565, Product: 'Eco Supreme', Amount: 1820, Discount: '0.09', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 566, Product: 'EnviroCare', Amount: 1400, Discount: '0.2', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 567, Product: 'Eco Max', Amount: 1900, Discount: '0.24', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 568, Product: 'SolarMax', Amount: 4020, Discount: '0.2133333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 569, Product: 'SolarOne', Amount: 5500, Discount: '0.3333333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 570, Product: 'Eco Supreme', Amount: 1750, Discount: '0.125', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 571, Product: 'Eco Max', Amount: 7150, Discount: '0.14', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 572, Product: 'Eco Supreme', Amount: 7740, Discount: '0.13', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 573, Product: 'Eco Supreme', Amount: 3560, Discount: '0.22', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Columbia Solar', }, { Id: 574, Product: 'SolarMax', Amount: 6270, Discount: '0.2133333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 575, Product: 'SolarOne', Amount: 5920, Discount: '0.0533333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Green Energy Inc', }, { Id: 576, Product: 'SolarMax', Amount: 8370, Discount: '0.28', SaleDate: '2024-05-12T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 577, Product: 'Eco Max', Amount: 9450, Discount: '0.22', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 578, Product: 'Eco Max', Amount: 2340, Discount: '0.064', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Columbia Solar', }, { Id: 579, Product: 'EnviroCare', Amount: 1520, Discount: '0.1314285714285714285714285714', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 580, Product: 'EnviroCare', Amount: 5050, Discount: '0.1142857142857142857142857143', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 581, Product: 'Eco Supreme', Amount: 1640, Discount: '0.18', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 582, Product: 'Eco Max', Amount: 4930, Discount: '0.028', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 583, Product: 'Eco Max', Amount: 7000, Discount: '0.2', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 584, Product: 'Eco Supreme', Amount: 1860, Discount: '0.07', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 585, Product: 'Eco Supreme', Amount: 1670, Discount: '0.165', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Retail', Customer: 'Apollo Inc', }, { Id: 586, Product: 'Eco Max', Amount: 2250, Discount: '0.1', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 587, Product: 'Eco Supreme', Amount: 3680, Discount: '0.16', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Retail', Customer: 'Gemini Stores', }, { Id: 588, Product: 'Eco Supreme', Amount: 5420, Discount: '0.29', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 589, Product: 'Eco Max', Amount: 4900, Discount: '0.04', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 590, Product: 'Eco Supreme', Amount: 3540, Discount: '0.23', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 591, Product: 'Eco Max', Amount: 9420, Discount: '0.232', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 592, Product: 'Eco Max', Amount: 4510, Discount: '0.196', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Smith & Co', }, { Id: 593, Product: 'Eco Supreme', Amount: 3740, Discount: '0.13', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 594, Product: 'EnviroCare', Amount: 1570, Discount: '0.1028571428571428571428571429', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 595, Product: 'SolarMax', Amount: 6270, Discount: '0.2133333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 596, Product: 'Eco Supreme', Amount: 5260, Discount: '0.37', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 597, Product: 'Eco Supreme', Amount: 1780, Discount: '0.11', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Renewable Supplies', }, { Id: 598, Product: 'Eco Max', Amount: 9820, Discount: '0.072', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 599, Product: 'Eco Max', Amount: 2370, Discount: '0.052', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 600, Product: 'Eco Max', Amount: 1920, Discount: '0.232', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Global Services', }, { Id: 601, Product: 'Eco Supreme', Amount: 3300, Discount: '0.35', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 602, Product: 'Eco Max', Amount: 4630, Discount: '0.148', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 603, Product: 'Eco Supreme', Amount: 1840, Discount: '0.08', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 604, Product: 'SolarMax', Amount: 8590, Discount: '0.1822222222222222222222222222', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 605, Product: 'SolarMax', Amount: 3860, Discount: '0.2844444444444444444444444444', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 606, Product: 'SolarOne', Amount: 4100, Discount: '0.2666666666666666666666666667', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Green Energy Inc', }, { Id: 607, Product: 'Eco Max', Amount: 7090, Discount: '0.164', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 608, Product: 'SolarMax', Amount: 6570, Discount: '0.08', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 609, Product: 'Eco Max', Amount: 2120, Discount: '0.152', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 610, Product: 'Eco Max', Amount: 4690, Discount: '0.124', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 611, Product: 'Eco Supreme', Amount: 7350, Discount: '0.325', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 612, Product: 'Eco Max', Amount: 4750, Discount: '0.1', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 613, Product: 'Eco Max', Amount: 1940, Discount: '0.224', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 614, Product: 'Eco Max', Amount: 7380, Discount: '0.048', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 615, Product: 'Eco Supreme', Amount: 7290, Discount: '0.355', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Energy Systems', }, { Id: 616, Product: 'EnviroCare', Amount: 4830, Discount: '0.24', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 617, Product: 'Eco Supreme', Amount: 7400, Discount: '0.3', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 618, Product: 'Eco Max', Amount: 9360, Discount: '0.256', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 619, Product: 'SolarOne', Amount: 4000, Discount: '0.3333333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Market Eco', }, { Id: 620, Product: 'Eco Max', Amount: 4750, Discount: '0.1', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 621, Product: 'Eco Supreme', Amount: 7690, Discount: '0.155', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 622, Product: 'SolarMax', Amount: 8550, Discount: '0.2', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 623, Product: 'SolarMax', Amount: 8310, Discount: '0.3066666666666666666666666667', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Retail', Customer: 'Health Plus Inc', }, { Id: 624, Product: 'Eco Supreme', Amount: 1890, Discount: '0.055', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Renewable Supplies', }, { Id: 625, Product: 'EnviroCare', Amount: 3130, Discount: '0.2114285714285714285714285714', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 626, Product: 'Eco Max', Amount: 4860, Discount: '0.056', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 627, Product: 'EnviroCare', Amount: 6400, Discount: '0.3428571428571428571428571429', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 628, Product: 'Eco Max', Amount: 1780, Discount: '0.288', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 629, Product: 'SolarMax', Amount: 1810, Discount: '0.1955555555555555555555555556', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 630, Product: 'Eco Supreme', Amount: 5270, Discount: '0.365', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 631, Product: 'Eco Max', Amount: 4370, Discount: '0.252', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Solar Warehouse', }, { Id: 632, Product: 'SolarMax', Amount: 4130, Discount: '0.1644444444444444444444444444', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 633, Product: 'SolarOne', Amount: 2350, Discount: '0.4333333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 634, Product: 'Eco Max', Amount: 7120, Discount: '0.152', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 635, Product: 'Eco Max', Amount: 4470, Discount: '0.212', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 636, Product: 'Eco Max', Amount: 6930, Discount: '0.228', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Building Management Inc', }, { Id: 637, Product: 'Eco Max', Amount: 9950, Discount: '0.02', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 638, Product: 'SolarMax', Amount: 6180, Discount: '0.2533333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 639, Product: 'Eco Max', Amount: 2310, Discount: '0.076', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 640, Product: 'SolarMax', Amount: 1840, Discount: '0.1822222222222222222222222222', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 641, Product: 'EnviroCare', Amount: 4840, Discount: '0.2342857142857142857142857143', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 642, Product: 'Eco Supreme', Amount: 5840, Discount: '0.08', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 643, Product: 'Eco Max', Amount: 6980, Discount: '0.208', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 644, Product: 'EnviroCare', Amount: 1520, Discount: '0.1314285714285714285714285714', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Green Energy Inc', }, { Id: 645, Product: 'SolarMax', Amount: 8640, Discount: '0.16', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 646, Product: 'Eco Max', Amount: 9850, Discount: '0.06', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 647, Product: 'EnviroCare', Amount: 4540, Discount: '0.4057142857142857142857142857', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Global Services', }, { Id: 648, Product: 'SolarMax', Amount: 2170, Discount: '0.0355555555555555555555555556', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 649, Product: 'EnviroCare', Amount: 6950, Discount: '0.0285714285714285714285714286', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Retail', Customer: 'Market Eco', }, { Id: 650, Product: 'Eco Max', Amount: 4860, Discount: '0.056', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 651, Product: 'Eco Max', Amount: 2320, Discount: '0.072', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 652, Product: 'Eco Max', Amount: 4570, Discount: '0.172', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Retail', Customer: 'Market Eco', }, { Id: 653, Product: 'Eco Max', Amount: 2320, Discount: '0.072', SaleDate: '2024-05-12T00:00:00', Region: 'Africa', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 654, Product: 'Eco Max', Amount: 7380, Discount: '0.048', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Building Management Inc', }, { Id: 655, Product: 'Eco Supreme', Amount: 3690, Discount: '0.155', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Retail', Customer: 'Supply Warehous', }, { Id: 656, Product: 'SolarMax', Amount: 6070, Discount: '0.3022222222222222222222222222', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Retail', Customer: 'Apollo Inc', }, { Id: 657, Product: 'Eco Max', Amount: 2220, Discount: '0.112', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 658, Product: 'SolarMax', Amount: 6600, Discount: '0.0666666666666666666666666667', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 659, Product: 'Eco Max', Amount: 1850, Discount: '0.26', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 660, Product: 'Eco Supreme', Amount: 3890, Discount: '0.055', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 661, Product: 'Eco Max', Amount: 4560, Discount: '0.176', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 662, Product: 'Eco Max', Amount: 9360, Discount: '0.256', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 663, Product: 'Eco Max', Amount: 1980, Discount: '0.208', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 664, Product: 'EnviroCare', Amount: 4870, Discount: '0.2171428571428571428571428571', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 665, Product: 'Eco Supreme', Amount: 7640, Discount: '0.18', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 666, Product: 'EnviroCare', Amount: 6920, Discount: '0.0457142857142857142857142857', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'Columbia Solar', }, { Id: 667, Product: 'Eco Max', Amount: 2400, Discount: '0.04', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 668, Product: 'Eco Max', Amount: 1990, Discount: '0.204', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Get Solar Inc', }, { Id: 669, Product: 'Eco Max', Amount: 1770, Discount: '0.292', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 670, Product: 'SolarMax', Amount: 6580, Discount: '0.0755555555555555555555555556', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 671, Product: 'SolarMax', Amount: 4210, Discount: '0.1288888888888888888888888889', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 672, Product: 'SolarMax', Amount: 1730, Discount: '0.2311111111111111111111111111', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 673, Product: 'SolarMax', Amount: 4070, Discount: '0.1911111111111111111111111111', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Mercury Solar', }, { Id: 674, Product: 'Eco Supreme', Amount: 3530, Discount: '0.235', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 675, Product: 'Eco Max', Amount: 4730, Discount: '0.108', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Retail', Customer: 'Health Plus Inc', }, { Id: 676, Product: 'Eco Max', Amount: 7340, Discount: '0.064', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Mercury Solar', }, { Id: 677, Product: 'SolarMax', Amount: 8510, Discount: '0.2177777777777777777777777778', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 678, Product: 'Eco Max', Amount: 9800, Discount: '0.08', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 679, Product: 'Eco Supreme', Amount: 5750, Discount: '0.125', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 680, Product: 'Eco Max', Amount: 9490, Discount: '0.204', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 681, Product: 'Eco Max', Amount: 6950, Discount: '0.22', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 682, Product: 'SolarMax', Amount: 1730, Discount: '0.2311111111111111111111111111', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Smith & Co', }, { Id: 683, Product: 'Eco Max', Amount: 9950, Discount: '0.02', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 684, Product: 'Eco Max', Amount: 7050, Discount: '0.18', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 685, Product: 'EnviroCare', Amount: 3130, Discount: '0.2114285714285714285714285714', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Retail', Customer: 'Global Services', }, { Id: 686, Product: 'Eco Max', Amount: 6990, Discount: '0.204', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Energy', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 687, Product: 'Eco Max', Amount: 2320, Discount: '0.072', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 688, Product: 'SolarMax', Amount: 6520, Discount: '0.1022222222222222222222222222', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 689, Product: 'SolarMax', Amount: 1600, Discount: '0.2888888888888888888888888889', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 690, Product: 'Eco Max', Amount: 2160, Discount: '0.136', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 691, Product: 'Eco Max', Amount: 9440, Discount: '0.224', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 692, Product: 'Eco Max', Amount: 6950, Discount: '0.22', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 693, Product: 'EnviroCare', Amount: 6310, Discount: '0.3942857142857142857142857143', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Columbia Solar', }, { Id: 694, Product: 'Eco Max', Amount: 9860, Discount: '0.056', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 695, Product: 'Eco Max', Amount: 2090, Discount: '0.164', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 696, Product: 'Eco Supreme', Amount: 5820, Discount: '0.09', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 697, Product: 'Eco Supreme', Amount: 5290, Discount: '0.355', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 698, Product: 'Eco Max', Amount: 2130, Discount: '0.148', SaleDate: '2024-05-12T00:00:00', Region: 'Africa', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 699, Product: 'SolarMax', Amount: 1580, Discount: '0.2977777777777777777777777778', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Building Management Inc', }, { Id: 700, Product: 'EnviroCare Max', Amount: 8350, Discount: '0.0178571428571428571428571429', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 701, Product: 'EnviroCare', Amount: 3200, Discount: '0.1714285714285714285714285714', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 702, Product: 'Eco Max', Amount: 9360, Discount: '0.256', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 703, Product: 'Eco Supreme', Amount: 3920, Discount: '0.04', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Retail', Customer: 'Solar Warehouse', }, { Id: 704, Product: 'Eco Max', Amount: 1820, Discount: '0.272', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Global Services', }, { Id: 705, Product: 'Eco Max', Amount: 2300, Discount: '0.08', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'Supply Warehous', }, { Id: 706, Product: 'Eco Max', Amount: 4440, Discount: '0.224', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 707, Product: 'Eco Max', Amount: 2010, Discount: '0.196', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 708, Product: 'Eco Max', Amount: 1840, Discount: '0.264', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Mercury Solar', }, { Id: 709, Product: 'Eco Max', Amount: 7090, Discount: '0.164', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 710, Product: 'SolarOne', Amount: 2750, Discount: '0.1666666666666666666666666667', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 711, Product: 'Eco Max', Amount: 4640, Discount: '0.144', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Retail', Customer: 'Gemini Stores', }, { Id: 712, Product: 'Eco Max', Amount: 9290, Discount: '0.284', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 713, Product: 'Eco Supreme', Amount: 5620, Discount: '0.19', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 714, Product: 'Eco Max', Amount: 4690, Discount: '0.124', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 715, Product: 'Eco Supreme', Amount: 3350, Discount: '0.325', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 716, Product: 'Eco Supreme', Amount: 3680, Discount: '0.16', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'McCord Builders', }, { Id: 717, Product: 'EnviroCare', Amount: 5100, Discount: '0.0857142857142857142857142857', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 718, Product: 'Eco Max', Amount: 9880, Discount: '0.048', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 719, Product: 'Eco Supreme', Amount: 7390, Discount: '0.305', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 720, Product: 'EnviroCare', Amount: 3210, Discount: '0.1657142857142857142857142857', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 721, Product: 'SolarMax', Amount: 6340, Discount: '0.1822222222222222222222222222', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Consultants', Customer: 'Solar Warehouse', }, { Id: 722, Product: 'Eco Max', Amount: 4530, Discount: '0.188', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Green Energy Inc', }, { Id: 723, Product: 'Eco Max', Amount: 4650, Discount: '0.14', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 724, Product: 'Eco Max', Amount: 9370, Discount: '0.252', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Columbia Solar', }, { Id: 725, Product: 'SolarMax', Amount: 6420, Discount: '0.1466666666666666666666666667', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 726, Product: 'Eco Max', Amount: 9820, Discount: '0.072', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 727, Product: 'Eco Max', Amount: 4860, Discount: '0.056', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 728, Product: 'Eco Max', Amount: 2280, Discount: '0.088', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 729, Product: 'SolarOne', Amount: 5850, Discount: '0.1', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Columbia Solar', }, { Id: 730, Product: 'Eco Max', Amount: 7430, Discount: '0.028', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 731, Product: 'Eco Max', Amount: 7230, Discount: '0.108', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 732, Product: 'Eco Max', Amount: 6780, Discount: '0.288', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 733, Product: 'Eco Max', Amount: 2020, Discount: '0.192', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 734, Product: 'SolarMax', Amount: 6560, Discount: '0.0844444444444444444444444444', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 735, Product: 'Eco Max', Amount: 9810, Discount: '0.076', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Energy', Channel: 'VARs', Customer: 'Green Energy Inc', }, { Id: 736, Product: 'Eco Supreme', Amount: 3870, Discount: '0.065', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 737, Product: 'SolarOne', Amount: 5690, Discount: '0.2066666666666666666666666667', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Global Services', }, { Id: 738, Product: 'SolarOne', Amount: 1030, Discount: '0.3133333333333333333333333333', SaleDate: '2024-05-12T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 739, Product: 'Eco Max', Amount: 9750, Discount: '0.1', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 740, Product: 'Eco Max', Amount: 6800, Discount: '0.28', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 741, Product: 'Eco Supreme', Amount: 3840, Discount: '0.08', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 742, Product: 'Eco Max', Amount: 2430, Discount: '0.028', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 743, Product: 'Eco Supreme', Amount: 3890, Discount: '0.055', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 744, Product: 'Eco Max', Amount: 6980, Discount: '0.208', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Columbia Solar', }, { Id: 745, Product: 'Eco Max', Amount: 7340, Discount: '0.064', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 746, Product: 'Eco Max', Amount: 6760, Discount: '0.296', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 747, Product: 'Eco Supreme', Amount: 5680, Discount: '0.16', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 748, Product: 'Eco Max', Amount: 7350, Discount: '0.06', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 749, Product: 'Eco Max', Amount: 9440, Discount: '0.224', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 750, Product: 'Eco Max', Amount: 4900, Discount: '0.04', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 751, Product: 'SolarMax', Amount: 6480, Discount: '0.12', SaleDate: '2024-05-12T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 752, Product: 'Eco Max', Amount: 4270, Discount: '0.292', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 753, Product: 'Eco Max', Amount: 9890, Discount: '0.044', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 754, Product: 'Eco Supreme', Amount: 3410, Discount: '0.295', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 755, Product: 'SolarMax', Amount: 1780, Discount: '0.2088888888888888888888888889', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 756, Product: 'Eco Max', Amount: 2010, Discount: '0.196', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 757, Product: 'Eco Max', Amount: 7450, Discount: '0.02', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 758, Product: 'Eco Supreme', Amount: 7510, Discount: '0.245', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 759, Product: 'Eco Max', Amount: 6760, Discount: '0.296', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 760, Product: 'Eco Supreme', Amount: 3350, Discount: '0.325', SaleDate: '2024-05-12T00:00:00', Region: 'Asia', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 761, Product: 'Eco Max', Amount: 4290, Discount: '0.284', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 762, Product: 'Eco Max', Amount: 4490, Discount: '0.204', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 763, Product: 'EnviroCare', Amount: 1520, Discount: '0.1314285714285714285714285714', SaleDate: '2024-05-12T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Global Services', }, { Id: 764, Product: 'EnviroCare', Amount: 3450, Discount: '0.0285714285714285714285714286', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 765, Product: 'SolarOne', Amount: 1440, Discount: '0.04', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 766, Product: 'Eco Supreme', Amount: 5940, Discount: '0.03', SaleDate: '2024-05-12T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 767, Product: 'Eco Supreme', Amount: 7400, Discount: '0.3', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 768, Product: 'SolarMax', Amount: 3980, Discount: '0.2311111111111111111111111111', SaleDate: '2024-05-12T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 769, Product: 'Eco Max', Amount: 9490, Discount: '0.204', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 770, Product: 'SolarMax', Amount: 4000, Discount: '0.2222222222222222222222222222', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 771, Product: 'Eco Max', Amount: 7360, Discount: '0.056', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 772, Product: 'EnviroCare', Amount: 1310, Discount: '0.2514285714285714285714285714', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Columbia Solar', }, { Id: 773, Product: 'Eco Max', Amount: 9890, Discount: '0.044', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 774, Product: 'Eco Supreme', Amount: 1410, Discount: '0.295', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 775, Product: 'Eco Max', Amount: 7320, Discount: '0.072', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 776, Product: 'Eco Supreme', Amount: 5580, Discount: '0.21', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 777, Product: 'Eco Supreme', Amount: 7340, Discount: '0.33', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 778, Product: 'Eco Max', Amount: 7300, Discount: '0.08', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 779, Product: 'SolarMax', Amount: 2080, Discount: '0.0755555555555555555555555556', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 780, Product: 'Eco Max', Amount: 9810, Discount: '0.076', SaleDate: '2024-05-13T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 781, Product: 'Eco Max', Amount: 2390, Discount: '0.044', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Health Plus Inc', }, { Id: 782, Product: 'SolarMax', Amount: 8760, Discount: '0.1066666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 783, Product: 'Eco Max', Amount: 6800, Discount: '0.28', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 784, Product: 'SolarMax', Amount: 2040, Discount: '0.0933333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 785, Product: 'SolarOne', Amount: 960, Discount: '0.36', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 786, Product: 'EnviroCare', Amount: 3290, Discount: '0.12', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Green Energy Inc', }, { Id: 787, Product: 'Eco Supreme', Amount: 7400, Discount: '0.3', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 788, Product: 'Eco Max', Amount: 7300, Discount: '0.08', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 789, Product: 'Eco Supreme', Amount: 1420, Discount: '0.29', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 790, Product: 'Eco Max', Amount: 9880, Discount: '0.048', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 791, Product: 'Eco Max', Amount: 4480, Discount: '0.208', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 792, Product: 'Eco Supreme', Amount: 5470, Discount: '0.265', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 793, Product: 'Eco Supreme', Amount: 1740, Discount: '0.13', SaleDate: '2024-05-13T00:00:00', Region: 'Africa', Sector: 'Banking', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 794, Product: 'SolarOne', Amount: 4420, Discount: '0.0533333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 795, Product: 'SolarOne', Amount: 1430, Discount: '0.0466666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 796, Product: 'Eco Max', Amount: 2090, Discount: '0.164', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 797, Product: 'Eco Max', Amount: 9690, Discount: '0.124', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Arthur & Sons', }, { Id: 798, Product: 'Eco Supreme', Amount: 5540, Discount: '0.23', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 799, Product: 'Eco Max', Amount: 9330, Discount: '0.268', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 800, Product: 'Eco Supreme', Amount: 1660, Discount: '0.17', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 801, Product: 'SolarOne', Amount: 1400, Discount: '0.0666666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 802, Product: 'Eco Max', Amount: 6800, Discount: '0.28', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Gemini Stores', }, { Id: 803, Product: 'Eco Supreme', Amount: 3540, Discount: '0.23', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 804, Product: 'Eco Supreme', Amount: 3400, Discount: '0.3', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 805, Product: 'Eco Max', Amount: 4860, Discount: '0.056', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 806, Product: 'Eco Max', Amount: 7080, Discount: '0.168', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 807, Product: 'SolarMax', Amount: 1810, Discount: '0.1955555555555555555555555556', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Renewable Supplies', }, { Id: 808, Product: 'EnviroCare', Amount: 4660, Discount: '0.3371428571428571428571428571', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 809, Product: 'EnviroCare Max', Amount: 2440, Discount: '0.1285714285714285714285714286', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 810, Product: 'Eco Max', Amount: 2310, Discount: '0.076', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 811, Product: 'Eco Supreme', Amount: 5910, Discount: '0.045', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 812, Product: 'Eco Max', Amount: 9810, Discount: '0.076', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 813, Product: 'Eco Max', Amount: 4270, Discount: '0.292', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Retail', Customer: 'Apollo Inc', }, { Id: 814, Product: 'Eco Max', Amount: 7130, Discount: '0.148', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 815, Product: 'SolarMax', Amount: 8650, Discount: '0.1555555555555555555555555556', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 816, Product: 'EnviroCare', Amount: 1700, Discount: '0.0285714285714285714285714286', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 817, Product: 'Eco Supreme', Amount: 5510, Discount: '0.245', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 818, Product: 'Eco Supreme', Amount: 3910, Discount: '0.045', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Smith & Co', }, { Id: 819, Product: 'Eco Supreme', Amount: 1420, Discount: '0.29', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Columbia Solar', }, { Id: 820, Product: 'Eco Max', Amount: 9420, Discount: '0.232', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 821, Product: 'Eco Max', Amount: 4440, Discount: '0.224', SaleDate: '2024-05-13T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'Retail', Customer: 'Solar Warehouse', }, { Id: 822, Product: 'Eco Max', Amount: 2340, Discount: '0.064', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 823, Product: 'SolarMax', Amount: 3790, Discount: '0.3155555555555555555555555556', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 824, Product: 'SolarOne', Amount: 3860, Discount: '0.4266666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 825, Product: 'Eco Max', Amount: 7350, Discount: '0.06', SaleDate: '2024-05-13T00:00:00', Region: 'Africa', Sector: 'Telecom', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 826, Product: 'SolarMax', Amount: 8350, Discount: '0.2888888888888888888888888889', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 827, Product: 'SolarMax', Amount: 6040, Discount: '0.3155555555555555555555555556', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 828, Product: 'Eco Max', Amount: 9740, Discount: '0.104', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 829, Product: 'Eco Max', Amount: 4340, Discount: '0.264', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 830, Product: 'Eco Max', Amount: 9370, Discount: '0.252', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 831, Product: 'Eco Supreme', Amount: 7780, Discount: '0.11', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 832, Product: 'Eco Supreme', Amount: 7750, Discount: '0.125', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 833, Product: 'Eco Max', Amount: 9950, Discount: '0.02', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 834, Product: 'Eco Supreme', Amount: 1440, Discount: '0.28', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 835, Product: 'Eco Max', Amount: 1850, Discount: '0.26', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 836, Product: 'Eco Supreme', Amount: 5720, Discount: '0.14', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Smith & Co', }, { Id: 837, Product: 'Eco Supreme', Amount: 1700, Discount: '0.15', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 838, Product: 'SolarMax', Amount: 8860, Discount: '0.0622222222222222222222222222', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 839, Product: 'Eco Max', Amount: 1760, Discount: '0.296', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 840, Product: 'SolarOne', Amount: 4360, Discount: '0.0933333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 841, Product: 'Eco Supreme', Amount: 7690, Discount: '0.155', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 842, Product: 'Eco Max', Amount: 6770, Discount: '0.292', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'McCord Builders', }, { Id: 843, Product: 'Eco Max', Amount: 4540, Discount: '0.184', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 844, Product: 'Eco Max', Amount: 4720, Discount: '0.112', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 845, Product: 'Eco Max', Amount: 4390, Discount: '0.244', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 846, Product: 'Eco Supreme', Amount: 3810, Discount: '0.095', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 847, Product: 'SolarMax', Amount: 8900, Discount: '0.0444444444444444444444444444', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 848, Product: 'Eco Supreme', Amount: 5790, Discount: '0.105', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 849, Product: 'Eco Max', Amount: 9740, Discount: '0.104', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 850, Product: 'Eco Max', Amount: 2320, Discount: '0.072', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 851, Product: 'SolarMax', Amount: 8700, Discount: '0.1333333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 852, Product: 'Eco Max', Amount: 2110, Discount: '0.156', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'Columbia Solar', }, { Id: 853, Product: 'Eco Supreme', Amount: 1560, Discount: '0.22', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 854, Product: 'Eco Supreme', Amount: 7460, Discount: '0.27', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 855, Product: 'Eco Max', Amount: 9310, Discount: '0.276', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 856, Product: 'Eco Max', Amount: 4510, Discount: '0.196', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 857, Product: 'Eco Supreme', Amount: 7830, Discount: '0.085', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Building Management Inc', }, { Id: 858, Product: 'SolarMax', Amount: 8340, Discount: '0.2933333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 859, Product: 'Eco Max', Amount: 6940, Discount: '0.224', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 860, Product: 'SolarMax', Amount: 4310, Discount: '0.0844444444444444444444444444', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 861, Product: 'Eco Max', Amount: 9810, Discount: '0.076', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 862, Product: 'Eco Max', Amount: 7350, Discount: '0.06', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 863, Product: 'SolarMax', Amount: 8600, Discount: '0.1777777777777777777777777778', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 864, Product: 'Eco Max', Amount: 4610, Discount: '0.156', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 865, Product: 'EnviroCare', Amount: 2900, Discount: '0.3428571428571428571428571429', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 866, Product: 'Eco Supreme', Amount: 7370, Discount: '0.315', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 867, Product: 'SolarMax', Amount: 6650, Discount: '0.0444444444444444444444444444', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Renewable Supplies', }, { Id: 868, Product: 'SolarMax', Amount: 8740, Discount: '0.1155555555555555555555555556', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Renewable Supplies', }, { Id: 869, Product: 'Eco Max', Amount: 7100, Discount: '0.16', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'Arthur & Sons', }, { Id: 870, Product: 'SolarMax', Amount: 4200, Discount: '0.1333333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Building Management Inc', }, { Id: 871, Product: 'Eco Supreme', Amount: 1330, Discount: '0.335', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 872, Product: 'Eco Supreme', Amount: 3480, Discount: '0.26', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Health Plus Inc', }, { Id: 873, Product: 'Eco Max', Amount: 9420, Discount: '0.232', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 874, Product: 'Eco Max', Amount: 2060, Discount: '0.176', SaleDate: '2024-05-13T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 875, Product: 'SolarMax', Amount: 3910, Discount: '0.2622222222222222222222222222', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 876, Product: 'Eco Max', Amount: 7000, Discount: '0.2', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Green Energy Inc', }, { Id: 877, Product: 'SolarMax', Amount: 6170, Discount: '0.2577777777777777777777777778', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 878, Product: 'SolarMax', Amount: 4380, Discount: '0.0533333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 879, Product: 'Eco Supreme', Amount: 3850, Discount: '0.075', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 880, Product: 'SolarMax', Amount: 6400, Discount: '0.1555555555555555555555555556', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 881, Product: 'Eco Max', Amount: 2160, Discount: '0.136', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 882, Product: 'Eco Max', Amount: 4770, Discount: '0.092', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 883, Product: 'Eco Max', Amount: 6880, Discount: '0.248', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 884, Product: 'Eco Max', Amount: 9520, Discount: '0.192', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 885, Product: 'Eco Supreme', Amount: 3910, Discount: '0.045', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 886, Product: 'Eco Max', Amount: 4820, Discount: '0.072', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 887, Product: 'Eco Max', Amount: 9380, Discount: '0.248', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 888, Product: 'EnviroCare', Amount: 4540, Discount: '0.4057142857142857142857142857', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 889, Product: 'Eco Supreme', Amount: 7730, Discount: '0.135', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Columbia Solar', }, { Id: 890, Product: 'SolarMax', Amount: 8670, Discount: '0.1466666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 891, Product: 'SolarMax', Amount: 6140, Discount: '0.2711111111111111111111111111', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 892, Product: 'Eco Supreme', Amount: 3550, Discount: '0.225', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 893, Product: 'Eco Supreme', Amount: 3780, Discount: '0.11', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Retail', Customer: 'Global Services', }, { Id: 894, Product: 'Eco Supreme', Amount: 7280, Discount: '0.36', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 895, Product: 'Eco Max', Amount: 6910, Discount: '0.236', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 896, Product: 'Eco Max', Amount: 4300, Discount: '0.28', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 897, Product: 'SolarMax', Amount: 1550, Discount: '0.3111111111111111111111111111', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 898, Product: 'Eco Max', Amount: 6820, Discount: '0.272', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 899, Product: 'SolarOne', Amount: 1000, Discount: '0.3333333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Get Solar Inc', }, { Id: 900, Product: 'Eco Max', Amount: 7060, Discount: '0.176', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 901, Product: 'SolarMax', Amount: 8420, Discount: '0.2577777777777777777777777778', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Market Eco', }, { Id: 902, Product: 'Eco Supreme', Amount: 5580, Discount: '0.21', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 903, Product: 'Eco Supreme', Amount: 1820, Discount: '0.09', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 904, Product: 'Eco Max', Amount: 7130, Discount: '0.148', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 905, Product: 'Eco Max', Amount: 2360, Discount: '0.056', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 906, Product: 'Eco Max', Amount: 9730, Discount: '0.108', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Retail', Customer: 'Health Plus Inc', }, { Id: 907, Product: 'Eco Max', Amount: 6850, Discount: '0.26', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 908, Product: 'Eco Max', Amount: 7140, Discount: '0.144', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 909, Product: 'SolarMax', Amount: 4130, Discount: '0.1644444444444444444444444444', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 910, Product: 'Eco Max', Amount: 2060, Discount: '0.176', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 911, Product: 'Eco Max', Amount: 4560, Discount: '0.176', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 912, Product: 'Eco Max', Amount: 4730, Discount: '0.108', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 913, Product: 'SolarMax', Amount: 1530, Discount: '0.32', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 914, Product: 'SolarMax', Amount: 1560, Discount: '0.3066666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 915, Product: 'Eco Max', Amount: 4510, Discount: '0.196', SaleDate: '2024-05-13T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 916, Product: 'SolarOne', Amount: 2400, Discount: '0.4', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 917, Product: 'Eco Max', Amount: 9280, Discount: '0.288', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 918, Product: 'SolarOne', Amount: 5460, Discount: '0.36', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 919, Product: 'Eco Max', Amount: 2060, Discount: '0.176', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 920, Product: 'Eco Supreme', Amount: 5470, Discount: '0.265', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 921, Product: 'Eco Max', Amount: 2450, Discount: '0.02', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 922, Product: 'EnviroCare', Amount: 6880, Discount: '0.0685714285714285714285714286', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 923, Product: 'Eco Supreme', Amount: 7300, Discount: '0.35', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 924, Product: 'Eco Max', Amount: 2250, Discount: '0.1', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Consultants', Customer: 'Columbia Solar', }, { Id: 925, Product: 'Eco Max', Amount: 7220, Discount: '0.112', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 926, Product: 'SolarOne', Amount: 3770, Discount: '0.4866666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 927, Product: 'Eco Max', Amount: 4770, Discount: '0.092', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 928, Product: 'SolarMax', Amount: 6590, Discount: '0.0711111111111111111111111111', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 929, Product: 'Eco Max', Amount: 4560, Discount: '0.176', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 930, Product: 'SolarOne', Amount: 1340, Discount: '0.1066666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 931, Product: 'Eco Supreme', Amount: 7430, Discount: '0.285', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 932, Product: 'Eco Supreme', Amount: 1730, Discount: '0.135', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 933, Product: 'Eco Max', Amount: 7340, Discount: '0.064', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 934, Product: 'Eco Max', Amount: 2230, Discount: '0.108', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Retail', Customer: 'Mercury Solar', }, { Id: 935, Product: 'Eco Max', Amount: 4580, Discount: '0.168', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Retail', Customer: 'Health Plus Inc', }, { Id: 936, Product: 'Eco Max', Amount: 2010, Discount: '0.196', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 937, Product: 'EnviroCare', Amount: 3370, Discount: '0.0742857142857142857142857143', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 938, Product: 'Eco Max', Amount: 4700, Discount: '0.12', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Direct', Customer: 'Global Services', }, { Id: 939, Product: 'EnviroCare', Amount: 1490, Discount: '0.1485714285714285714285714286', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 940, Product: 'Eco Supreme', Amount: 1470, Discount: '0.265', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 941, Product: 'Eco Max', Amount: 4950, Discount: '0.02', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 942, Product: 'Eco Max', Amount: 9400, Discount: '0.24', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 943, Product: 'SolarMax', Amount: 4230, Discount: '0.12', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 944, Product: 'Eco Max', Amount: 4870, Discount: '0.052', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 945, Product: 'Eco Max', Amount: 9950, Discount: '0.02', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Green Energy Inc', }, { Id: 946, Product: 'Eco Supreme', Amount: 7670, Discount: '0.165', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 947, Product: 'SolarMax', Amount: 2140, Discount: '0.0488888888888888888888888889', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 948, Product: 'SolarMax', Amount: 1830, Discount: '0.1866666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 949, Product: 'Eco Supreme', Amount: 3610, Discount: '0.195', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 950, Product: 'Eco Max', Amount: 2310, Discount: '0.076', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 951, Product: 'Eco Max', Amount: 4730, Discount: '0.108', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Retail', Customer: 'Environment Solar', }, { Id: 952, Product: 'Eco Supreme', Amount: 7410, Discount: '0.295', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 953, Product: 'Eco Max', Amount: 2080, Discount: '0.168', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 954, Product: 'SolarMax', Amount: 2020, Discount: '0.1022222222222222222222222222', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Retail', Customer: 'Gemini Stores', }, { Id: 955, Product: 'Eco Max', Amount: 7240, Discount: '0.104', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Building Management Inc', }, { Id: 956, Product: 'Eco Max', Amount: 6810, Discount: '0.276', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 957, Product: 'Eco Max', Amount: 4350, Discount: '0.26', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 958, Product: 'SolarMax', Amount: 1860, Discount: '0.1733333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 959, Product: 'Eco Max', Amount: 2360, Discount: '0.056', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 960, Product: 'EnviroCare', Amount: 6850, Discount: '0.0857142857142857142857142857', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 961, Product: 'Eco Supreme', Amount: 7280, Discount: '0.36', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 962, Product: 'SolarMax', Amount: 2120, Discount: '0.0577777777777777777777777778', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Building Management Inc', }, { Id: 963, Product: 'Eco Supreme', Amount: 5350, Discount: '0.325', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 964, Product: 'Eco Max', Amount: 4840, Discount: '0.064', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 965, Product: 'Eco Max', Amount: 6980, Discount: '0.208', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 966, Product: 'SolarMax', Amount: 1860, Discount: '0.1733333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 967, Product: 'Eco Supreme', Amount: 5860, Discount: '0.07', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 968, Product: 'Eco Supreme', Amount: 5430, Discount: '0.285', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 969, Product: 'Eco Max', Amount: 7070, Discount: '0.172', SaleDate: '2024-05-13T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 970, Product: 'SolarMax', Amount: 1840, Discount: '0.1822222222222222222222222222', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 971, Product: 'SolarMax', Amount: 3970, Discount: '0.2355555555555555555555555556', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Green Energy Inc', }, { Id: 972, Product: 'Eco Supreme', Amount: 7850, Discount: '0.075', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Building Management Inc', }, { Id: 973, Product: 'SolarOne', Amount: 2870, Discount: '0.0866666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 974, Product: 'Eco Supreme', Amount: 7330, Discount: '0.335', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 975, Product: 'Eco Max', Amount: 2060, Discount: '0.176', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Retail', Customer: 'Health Plus Inc', }, { Id: 976, Product: 'SolarMax', Amount: 8700, Discount: '0.1333333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 977, Product: 'SolarMax', Amount: 8520, Discount: '0.2133333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 978, Product: 'Eco Max', Amount: 7360, Discount: '0.056', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 979, Product: 'Eco Max', Amount: 7160, Discount: '0.136', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 980, Product: 'EnviroCare', Amount: 5140, Discount: '0.0628571428571428571428571429', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 981, Product: 'Eco Supreme', Amount: 1530, Discount: '0.235', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 982, Product: 'Eco Max', Amount: 4950, Discount: '0.02', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 983, Product: 'Eco Supreme', Amount: 5500, Discount: '0.25', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 984, Product: 'SolarMax', Amount: 1620, Discount: '0.28', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 985, Product: 'EnviroCare', Amount: 1570, Discount: '0.1028571428571428571428571429', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 986, Product: 'Eco Max', Amount: 4330, Discount: '0.268', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 987, Product: 'SolarOne', Amount: 1000, Discount: '0.3333333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Solar Warehouse', }, { Id: 988, Product: 'Eco Supreme', Amount: 1580, Discount: '0.21', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 989, Product: 'Eco Supreme', Amount: 7880, Discount: '0.06', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 990, Product: 'Eco Supreme', Amount: 3900, Discount: '0.05', SaleDate: '2024-05-13T00:00:00', Region: 'Africa', Sector: 'Telecom', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 991, Product: 'SolarOne', Amount: 2870, Discount: '0.0866666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 992, Product: 'Eco Max', Amount: 2190, Discount: '0.124', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 993, Product: 'SolarMax', Amount: 6500, Discount: '0.1111111111111111111111111111', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 994, Product: 'Eco Max', Amount: 4570, Discount: '0.172', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Renewable Supplies', }, { Id: 995, Product: 'Eco Supreme', Amount: 1790, Discount: '0.105', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Solar Warehouse', }, { Id: 996, Product: 'EnviroCare', Amount: 3070, Discount: '0.2457142857142857142857142857', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 997, Product: 'SolarMax', Amount: 6360, Discount: '0.1733333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 998, Product: 'Eco Max', Amount: 4580, Discount: '0.168', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 999, Product: 'Eco Supreme', Amount: 1360, Discount: '0.32', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 1000, Product: 'Eco Supreme', Amount: 7430, Discount: '0.285', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 1001, Product: 'SolarMax', Amount: 6260, Discount: '0.2177777777777777777777777778', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Renewable Supplies', }, { Id: 1002, Product: 'SolarMax', Amount: 2160, Discount: '0.04', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 1003, Product: 'Eco Supreme', Amount: 5430, Discount: '0.285', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 1004, Product: 'Eco Max', Amount: 4470, Discount: '0.212', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 1005, Product: 'Eco Supreme', Amount: 3430, Discount: '0.285', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 1006, Product: 'SolarMax', Amount: 8280, Discount: '0.32', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 1007, Product: 'Eco Max', Amount: 6780, Discount: '0.288', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 1008, Product: 'SolarMax', Amount: 4170, Discount: '0.1466666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 1009, Product: 'EnviroCare', Amount: 4990, Discount: '0.1485714285714285714285714286', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 1010, Product: 'Eco Max', Amount: 4740, Discount: '0.104', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 1011, Product: 'Eco Max', Amount: 7240, Discount: '0.104', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 1012, Product: 'Eco Max', Amount: 2350, Discount: '0.06', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 1013, Product: 'SolarMax', Amount: 4290, Discount: '0.0933333333333333333333333333', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 1014, Product: 'Eco Supreme', Amount: 5310, Discount: '0.345', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 1015, Product: 'Eco Supreme', Amount: 3840, Discount: '0.08', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 1016, Product: 'Eco Max', Amount: 4400, Discount: '0.24', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 1017, Product: 'Eco Max', Amount: 2450, Discount: '0.02', SaleDate: '2024-05-13T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 1018, Product: 'Eco Max', Amount: 9940, Discount: '0.024', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 1019, Product: 'SolarOne', Amount: 4190, Discount: '0.2066666666666666666666666667', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Mercury Solar', }, { Id: 1020, Product: 'Eco Max', Amount: 1960, Discount: '0.216', SaleDate: '2024-05-13T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 1021, Product: 'Eco Supreme', Amount: 3320, Discount: '0.34', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 1022, Product: 'Eco Max', Amount: 7100, Discount: '0.16', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 1023, Product: 'Eco Supreme', Amount: 5360, Discount: '0.32', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1024, Product: 'Eco Max', Amount: 7410, Discount: '0.036', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'McCord Builders', }, { Id: 1025, Product: 'Eco Max', Amount: 2290, Discount: '0.084', SaleDate: '2024-05-13T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 1026, Product: 'SolarMax', Amount: 1550, Discount: '0.3111111111111111111111111111', SaleDate: '2024-05-13T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 1027, Product: 'SolarMax', Amount: 1980, Discount: '0.12', SaleDate: '2024-05-13T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 1028, Product: 'SolarMax', Amount: 1720, Discount: '0.2355555555555555555555555556', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Energy', Channel: 'Resellers', Customer: 'Global Services', }, { Id: 1029, Product: 'Eco Max', Amount: 4500, Discount: '0.2', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 1030, Product: 'SolarMax', Amount: 8710, Discount: '0.1288888888888888888888888889', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 1031, Product: 'Eco Max', Amount: 7110, Discount: '0.156', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 1032, Product: 'Eco Max', Amount: 4860, Discount: '0.056', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 1033, Product: 'Eco Supreme', Amount: 7470, Discount: '0.265', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Health Plus Inc', }, { Id: 1034, Product: 'Eco Max', Amount: 6810, Discount: '0.276', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 1035, Product: 'SolarOne', Amount: 5670, Discount: '0.22', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Retail', Customer: 'Environment Solar', }, { Id: 1036, Product: 'Eco Supreme', Amount: 7620, Discount: '0.19', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 1037, Product: 'EnviroCare', Amount: 3350, Discount: '0.0857142857142857142857142857', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 1038, Product: 'Eco Supreme', Amount: 1460, Discount: '0.27', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 1039, Product: 'Eco Supreme', Amount: 3630, Discount: '0.185', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 1040, Product: 'Eco Max', Amount: 7150, Discount: '0.14', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Global Services', }, { Id: 1041, Product: 'EnviroCare', Amount: 3320, Discount: '0.1028571428571428571428571429', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 1042, Product: 'SolarOne', Amount: 3870, Discount: '0.42', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 1043, Product: 'Eco Max', Amount: 6760, Discount: '0.296', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 1044, Product: 'Eco Supreme', Amount: 5620, Discount: '0.19', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 1045, Product: 'SolarOne', Amount: 920, Discount: '0.3866666666666666666666666667', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Smith & Co', }, { Id: 1046, Product: 'Eco Max', Amount: 9420, Discount: '0.232', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 1047, Product: 'Eco Max', Amount: 9830, Discount: '0.068', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 1048, Product: 'Eco Supreme', Amount: 3380, Discount: '0.31', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 1049, Product: 'SolarMax', Amount: 1670, Discount: '0.2577777777777777777777777778', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 1050, Product: 'Eco Max', Amount: 9830, Discount: '0.068', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Mercury Solar', }, { Id: 1051, Product: 'SolarOne', Amount: 3870, Discount: '0.42', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 1052, Product: 'Eco Max', Amount: 7240, Discount: '0.104', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 1053, Product: 'SolarMax', Amount: 6480, Discount: '0.12', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 1054, Product: 'Eco Max', Amount: 2130, Discount: '0.148', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Green Energy Inc', }, { Id: 1055, Product: 'Eco Max', Amount: 4360, Discount: '0.256', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Retail', Customer: 'Green Energy Inc', }, { Id: 1056, Product: 'SolarMax', Amount: 8700, Discount: '0.1333333333333333333333333333', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 1057, Product: 'SolarMax', Amount: 3770, Discount: '0.3244444444444444444444444444', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 1058, Product: 'Eco Supreme', Amount: 5490, Discount: '0.255', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Green Energy Inc', }, { Id: 1059, Product: 'Eco Max', Amount: 7160, Discount: '0.136', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 1060, Product: 'Eco Max', Amount: 1800, Discount: '0.28', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1061, Product: 'SolarMax', Amount: 1730, Discount: '0.2311111111111111111111111111', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 1062, Product: 'Eco Max', Amount: 7180, Discount: '0.128', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 1063, Product: 'SolarMax', Amount: 8380, Discount: '0.2755555555555555555555555556', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Green Energy Inc', }, { Id: 1064, Product: 'Eco Supreme', Amount: 7360, Discount: '0.32', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Retail', Customer: 'Market Eco', }, { Id: 1065, Product: 'EnviroCare', Amount: 6820, Discount: '0.1028571428571428571428571429', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 1066, Product: 'Eco Supreme', Amount: 5510, Discount: '0.245', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Arthur & Sons', }, { Id: 1067, Product: 'Eco Max', Amount: 4540, Discount: '0.184', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 1068, Product: 'EnviroCare', Amount: 1670, Discount: '0.0457142857142857142857142857', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 1069, Product: 'Eco Max', Amount: 9730, Discount: '0.108', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Smith & Co', }, { Id: 1070, Product: 'EnviroCare Max', Amount: 10910, Discount: '0.1035714285714285714285714286', SaleDate: '2024-05-14T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 1071, Product: 'Eco Max', Amount: 4820, Discount: '0.072', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 1072, Product: 'SolarOne', Amount: 5530, Discount: '0.3133333333333333333333333333', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 1073, Product: 'Eco Supreme', Amount: 7760, Discount: '0.12', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 1074, Product: 'Eco Supreme', Amount: 1690, Discount: '0.155', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Smith & Co', }, { Id: 1075, Product: 'EnviroCare', Amount: 1210, Discount: '0.3085714285714285714285714286', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 1076, Product: 'SolarOne', Amount: 1340, Discount: '0.1066666666666666666666666667', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Columbia Solar', }, { Id: 1077, Product: 'Eco Max', Amount: 7450, Discount: '0.02', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Smith & Co', }, { Id: 1078, Product: 'Eco Supreme', Amount: 7660, Discount: '0.17', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 1079, Product: 'SolarMax', Amount: 1900, Discount: '0.1555555555555555555555555556', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 1080, Product: 'Eco Max', Amount: 9420, Discount: '0.232', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 1081, Product: 'Eco Max', Amount: 7140, Discount: '0.144', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Retail', Customer: 'Solar Warehouse', }, { Id: 1082, Product: 'SolarMax', Amount: 8540, Discount: '0.2044444444444444444444444444', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 1083, Product: 'Eco Max', Amount: 9780, Discount: '0.088', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Retail', Customer: 'McCord Builders', }, { Id: 1084, Product: 'Eco Supreme', Amount: 7790, Discount: '0.105', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 1085, Product: 'Eco Max', Amount: 9890, Discount: '0.044', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1086, Product: 'Eco Supreme', Amount: 7480, Discount: '0.26', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Mercury Solar', }, { Id: 1087, Product: 'SolarMax', Amount: 3910, Discount: '0.2622222222222222222222222222', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 1088, Product: 'SolarMax', Amount: 2130, Discount: '0.0533333333333333333333333333', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 1089, Product: 'Eco Max', Amount: 9550, Discount: '0.18', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 1090, Product: 'SolarMax', Amount: 3770, Discount: '0.3244444444444444444444444444', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Supply Warehous', }, { Id: 1091, Product: 'Eco Max', Amount: 4530, Discount: '0.188', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1092, Product: 'Eco Max', Amount: 2240, Discount: '0.104', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Building Management Inc', }, { Id: 1093, Product: 'EnviroCare', Amount: 1060, Discount: '0.3942857142857142857142857143', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 1094, Product: 'Eco Max', Amount: 9390, Discount: '0.244', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 1095, Product: 'SolarMax', Amount: 3980, Discount: '0.2311111111111111111111111111', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 1096, Product: 'Eco Supreme', Amount: 7730, Discount: '0.135', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 1097, Product: 'Eco Max', Amount: 1860, Discount: '0.256', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 1098, Product: 'Eco Supreme', Amount: 7740, Discount: '0.13', SaleDate: '2024-05-14T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 1099, Product: 'Eco Max', Amount: 7080, Discount: '0.168', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 1100, Product: 'SolarMax', Amount: 3790, Discount: '0.3155555555555555555555555556', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1101, Product: 'Eco Supreme', Amount: 7430, Discount: '0.285', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 1102, Product: 'SolarMax', Amount: 3760, Discount: '0.3288888888888888888888888889', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Resellers', Customer: 'McCord Builders', }, { Id: 1103, Product: 'Eco Supreme', Amount: 3890, Discount: '0.055', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 1104, Product: 'EnviroCare', Amount: 1260, Discount: '0.28', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 1105, Product: 'EnviroCare', Amount: 3190, Discount: '0.1771428571428571428571428571', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 1106, Product: 'SolarMax', Amount: 8810, Discount: '0.0844444444444444444444444444', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1107, Product: 'SolarMax', Amount: 8430, Discount: '0.2533333333333333333333333333', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'McCord Builders', }, { Id: 1108, Product: 'Eco Max', Amount: 9820, Discount: '0.072', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 1109, Product: 'Eco Supreme', Amount: 5900, Discount: '0.05', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 1110, Product: 'Eco Max', Amount: 9660, Discount: '0.136', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'VARs', Customer: 'Smith & Co', }, { Id: 1111, Product: 'Eco Max', Amount: 9730, Discount: '0.108', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 1112, Product: 'EnviroCare', Amount: 4630, Discount: '0.3542857142857142857142857143', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Market Eco', }, { Id: 1113, Product: 'Eco Supreme', Amount: 1300, Discount: '0.35', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Green Energy Inc', }, { Id: 1114, Product: 'Eco Max', Amount: 9310, Discount: '0.276', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Smith & Co', }, { Id: 1115, Product: 'SolarMax', Amount: 6250, Discount: '0.2222222222222222222222222222', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 1116, Product: 'Eco Max', Amount: 4910, Discount: '0.036', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 1117, Product: 'Eco Max', Amount: 1970, Discount: '0.212', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 1118, Product: 'Eco Max', Amount: 4750, Discount: '0.1', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 1119, Product: 'Eco Max', Amount: 1900, Discount: '0.24', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'McCord Builders', }, { Id: 1120, Product: 'Eco Supreme', Amount: 1500, Discount: '0.25', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1121, Product: 'Eco Supreme', Amount: 5600, Discount: '0.2', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 1122, Product: 'SolarMax', Amount: 4450, Discount: '0.0222222222222222222222222222', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 1123, Product: 'SolarMax', Amount: 3770, Discount: '0.3244444444444444444444444444', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 1124, Product: 'EnviroCare', Amount: 3230, Discount: '0.1542857142857142857142857143', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 1125, Product: 'Eco Max', Amount: 7340, Discount: '0.064', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 1126, Product: 'Eco Max', Amount: 9870, Discount: '0.052', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 1127, Product: 'Eco Max', Amount: 7410, Discount: '0.036', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 1128, Product: 'Eco Max', Amount: 9690, Discount: '0.124', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Retail', Customer: 'Supply Warehous', }, { Id: 1129, Product: 'SolarOne', Amount: 2340, Discount: '0.44', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 1130, Product: 'Eco Max', Amount: 6780, Discount: '0.288', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Retail', Customer: 'Global Services', }, { Id: 1131, Product: 'Eco Max', Amount: 2050, Discount: '0.18', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1132, Product: 'Eco Max', Amount: 2290, Discount: '0.084', SaleDate: '2024-05-14T00:00:00', Region: 'Africa', Sector: 'Telecom', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 1133, Product: 'Eco Max', Amount: 4520, Discount: '0.192', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'Building Management Inc', }, { Id: 1134, Product: 'Eco Max', Amount: 7180, Discount: '0.128', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 1135, Product: 'Eco Supreme', Amount: 5770, Discount: '0.115', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 1136, Product: 'Eco Supreme', Amount: 1490, Discount: '0.255', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Green Energy Inc', }, { Id: 1137, Product: 'EnviroCare', Amount: 1170, Discount: '0.3314285714285714285714285714', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 1138, Product: 'Eco Max', Amount: 1770, Discount: '0.292', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Resellers', Customer: 'McCord Builders', }, { Id: 1139, Product: 'Eco Max', Amount: 4830, Discount: '0.068', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Get Solar Inc', }, { Id: 1140, Product: 'EnviroCare Max', Amount: 11040, Discount: '0.0571428571428571428571428571', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 1141, Product: 'SolarMax', Amount: 6180, Discount: '0.2533333333333333333333333333', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 1142, Product: 'Eco Supreme', Amount: 1290, Discount: '0.355', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 1143, Product: 'Eco Max', Amount: 9790, Discount: '0.084', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Renewable Supplies', }, { Id: 1144, Product: 'Eco Supreme', Amount: 3600, Discount: '0.2', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 1145, Product: 'Eco Max', Amount: 1970, Discount: '0.212', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 1146, Product: 'EnviroCare', Amount: 1690, Discount: '0.0342857142857142857142857143', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 1147, Product: 'Eco Supreme', Amount: 1390, Discount: '0.305', SaleDate: '2024-05-14T00:00:00', Region: 'Africa', Sector: 'Banking', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 1148, Product: 'Eco Supreme', Amount: 3640, Discount: '0.18', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 1149, Product: 'SolarMax', Amount: 1850, Discount: '0.1777777777777777777777777778', SaleDate: '2024-05-14T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 1150, Product: 'SolarOne', Amount: 1160, Discount: '0.2266666666666666666666666667', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 1151, Product: 'Eco Max', Amount: 7390, Discount: '0.044', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Retail', Customer: 'Global Services', }, { Id: 1152, Product: 'Eco Max', Amount: 1890, Discount: '0.244', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 1153, Product: 'EnviroCare', Amount: 4540, Discount: '0.4057142857142857142857142857', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 1154, Product: 'SolarMax', Amount: 1790, Discount: '0.2044444444444444444444444444', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 1155, Product: 'Eco Supreme', Amount: 7370, Discount: '0.315', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 1156, Product: 'SolarMax', Amount: 8770, Discount: '0.1022222222222222222222222222', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 1157, Product: 'EnviroCare', Amount: 5160, Discount: '0.0514285714285714285714285714', SaleDate: '2024-05-14T00:00:00', Region: 'Africa', Sector: 'Banking', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 1158, Product: 'Eco Max', Amount: 4510, Discount: '0.196', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 1159, Product: 'Eco Max', Amount: 1900, Discount: '0.24', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 1160, Product: 'Eco Max', Amount: 4760, Discount: '0.096', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 1161, Product: 'Eco Max', Amount: 6970, Discount: '0.212', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Building Management Inc', }, { Id: 1162, Product: 'Eco Max', Amount: 1860, Discount: '0.256', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 1163, Product: 'Eco Supreme', Amount: 1940, Discount: '0.03', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 1164, Product: 'SolarMax', Amount: 6480, Discount: '0.12', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 1165, Product: 'Eco Supreme', Amount: 3770, Discount: '0.115', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 1166, Product: 'Eco Max', Amount: 9790, Discount: '0.084', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 1167, Product: 'Eco Supreme', Amount: 7870, Discount: '0.065', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 1168, Product: 'SolarMax', Amount: 4380, Discount: '0.0533333333333333333333333333', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 1169, Product: 'Eco Supreme', Amount: 3800, Discount: '0.1', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 1170, Product: 'Eco Max', Amount: 4750, Discount: '0.1', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 1171, Product: 'Eco Supreme', Amount: 5800, Discount: '0.1', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 1172, Product: 'Eco Supreme', Amount: 5440, Discount: '0.28', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Environment Solar', }, { Id: 1173, Product: 'Eco Max', Amount: 4770, Discount: '0.092', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'Columbia Solar', }, { Id: 1174, Product: 'SolarMax', Amount: 6250, Discount: '0.2222222222222222222222222222', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1175, Product: 'SolarMax', Amount: 4120, Discount: '0.1688888888888888888888888889', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 1176, Product: 'Eco Max', Amount: 4380, Discount: '0.248', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 1177, Product: 'Eco Max', Amount: 9440, Discount: '0.224', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Retail', Customer: 'McCord Builders', }, { Id: 1178, Product: 'Eco Max', Amount: 4600, Discount: '0.16', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Smith & Co', }, { Id: 1179, Product: 'SolarMax', Amount: 2080, Discount: '0.0755555555555555555555555556', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 1180, Product: 'EnviroCare', Amount: 3170, Discount: '0.1885714285714285714285714286', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 1181, Product: 'SolarMax', Amount: 8450, Discount: '0.2444444444444444444444444444', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 1182, Product: 'Eco Max', Amount: 6980, Discount: '0.208', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 1183, Product: 'Eco Max', Amount: 9810, Discount: '0.076', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 1184, Product: 'Eco Supreme', Amount: 7840, Discount: '0.08', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Health Plus Inc', }, { Id: 1185, Product: 'Eco Supreme', Amount: 3900, Discount: '0.05', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 1186, Product: 'Eco Max', Amount: 7110, Discount: '0.156', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 1187, Product: 'EnviroCare', Amount: 5170, Discount: '0.0457142857142857142857142857', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 1188, Product: 'Eco Max', Amount: 4590, Discount: '0.164', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 1189, Product: 'EnviroCare', Amount: 6560, Discount: '0.2514285714285714285714285714', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 1190, Product: 'Eco Max', Amount: 4300, Discount: '0.28', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Retail', Customer: 'Market Eco', }, { Id: 1191, Product: 'SolarMax', Amount: 4010, Discount: '0.2177777777777777777777777778', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 1192, Product: 'Eco Supreme', Amount: 7710, Discount: '0.145', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 1193, Product: 'Eco Max', Amount: 7050, Discount: '0.18', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1194, Product: 'Eco Max', Amount: 4790, Discount: '0.084', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 1195, Product: 'Eco Max', Amount: 7400, Discount: '0.04', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 1196, Product: 'Eco Max', Amount: 2110, Discount: '0.156', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 1197, Product: 'Eco Max', Amount: 4510, Discount: '0.196', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Building Management Inc', }, { Id: 1198, Product: 'EnviroCare', Amount: 4720, Discount: '0.3028571428571428571428571429', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Retail', Customer: 'Mercury Solar', }, { Id: 1199, Product: 'Eco Max', Amount: 4860, Discount: '0.056', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 1200, Product: 'Eco Max', Amount: 1950, Discount: '0.22', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Arthur & Sons', }, { Id: 1201, Product: 'Eco Max', Amount: 9880, Discount: '0.048', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1202, Product: 'Eco Max', Amount: 2030, Discount: '0.188', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 1203, Product: 'Eco Max', Amount: 2150, Discount: '0.14', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 1204, Product: 'Eco Supreme', Amount: 7790, Discount: '0.105', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 1205, Product: 'Eco Supreme', Amount: 1550, Discount: '0.225', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 1206, Product: 'EnviroCare', Amount: 2880, Discount: '0.3542857142857142857142857143', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 1207, Product: 'Eco Max', Amount: 7110, Discount: '0.156', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 1208, Product: 'Eco Max', Amount: 9810, Discount: '0.076', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 1209, Product: 'SolarMax', Amount: 1800, Discount: '0.2', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1210, Product: 'SolarMax', Amount: 3960, Discount: '0.24', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 1211, Product: 'Eco Supreme', Amount: 3260, Discount: '0.37', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 1212, Product: 'Eco Supreme', Amount: 5360, Discount: '0.32', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 1213, Product: 'EnviroCare', Amount: 4680, Discount: '0.3257142857142857142857142857', SaleDate: '2024-05-14T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'VARs', Customer: 'Global Services', }, { Id: 1214, Product: 'Eco Max', Amount: 9730, Discount: '0.108', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 1215, Product: 'Eco Supreme', Amount: 3620, Discount: '0.19', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1216, Product: 'Eco Max', Amount: 9810, Discount: '0.076', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 1217, Product: 'EnviroCare', Amount: 4880, Discount: '0.2114285714285714285714285714', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1218, Product: 'Eco Supreme', Amount: 5540, Discount: '0.23', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 1219, Product: 'SolarOne', Amount: 1090, Discount: '0.2733333333333333333333333333', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Mercury Solar', }, { Id: 1220, Product: 'EnviroCare', Amount: 2780, Discount: '0.4114285714285714285714285714', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 1221, Product: 'SolarMax', Amount: 1560, Discount: '0.3066666666666666666666666667', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 1222, Product: 'Eco Max', Amount: 9760, Discount: '0.096', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 1223, Product: 'Eco Max', Amount: 4540, Discount: '0.184', SaleDate: '2024-05-14T00:00:00', Region: 'Africa', Sector: 'Banking', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 1224, Product: 'EnviroCare', Amount: 5180, Discount: '0.04', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 1225, Product: 'SolarMax', Amount: 6330, Discount: '0.1866666666666666666666666667', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 1226, Product: 'Eco Supreme', Amount: 7370, Discount: '0.315', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 1227, Product: 'SolarMax', Amount: 6350, Discount: '0.1777777777777777777777777778', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 1228, Product: 'Eco Max', Amount: 9450, Discount: '0.22', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 1229, Product: 'Eco Max', Amount: 4630, Discount: '0.148', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Building Management Inc', }, { Id: 1230, Product: 'Eco Supreme', Amount: 3430, Discount: '0.285', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 1231, Product: 'Eco Max', Amount: 7310, Discount: '0.076', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 1232, Product: 'SolarMax', Amount: 8950, Discount: '0.0222222222222222222222222222', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 1233, Product: 'Eco Supreme', Amount: 7340, Discount: '0.33', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 1234, Product: 'SolarMax', Amount: 8800, Discount: '0.0888888888888888888888888889', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 1235, Product: 'Eco Max', Amount: 7200, Discount: '0.12', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 1236, Product: 'Eco Supreme', Amount: 7600, Discount: '0.2', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 1237, Product: 'EnviroCare', Amount: 4510, Discount: '0.4228571428571428571428571429', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 1238, Product: 'EnviroCare', Amount: 6610, Discount: '0.2228571428571428571428571429', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 1239, Product: 'Eco Max', Amount: 4840, Discount: '0.064', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 1240, Product: 'Eco Max', Amount: 4800, Discount: '0.08', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 1241, Product: 'Eco Supreme', Amount: 7950, Discount: '0.025', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Green Energy Inc', }, { Id: 1242, Product: 'SolarMax', Amount: 2110, Discount: '0.0622222222222222222222222222', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 1243, Product: 'Eco Max', Amount: 6870, Discount: '0.252', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 1244, Product: 'Eco Max', Amount: 4550, Discount: '0.18', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Retail', Customer: 'Get Solar Inc', }, { Id: 1245, Product: 'Eco Supreme', Amount: 5670, Discount: '0.165', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 1246, Product: 'SolarOne', Amount: 5870, Discount: '0.0866666666666666666666666667', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 1247, Product: 'EnviroCare', Amount: 5110, Discount: '0.08', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 1248, Product: 'Eco Supreme', Amount: 1290, Discount: '0.355', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 1249, Product: 'SolarMax', Amount: 8730, Discount: '0.12', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 1250, Product: 'EnviroCare', Amount: 2910, Discount: '0.3371428571428571428571428571', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 1251, Product: 'SolarMax', Amount: 4410, Discount: '0.04', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 1252, Product: 'SolarMax', Amount: 6140, Discount: '0.2711111111111111111111111111', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 1253, Product: 'Eco Max', Amount: 4520, Discount: '0.192', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Environment Solar', }, { Id: 1254, Product: 'Eco Supreme', Amount: 5680, Discount: '0.16', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1255, Product: 'Eco Max', Amount: 2300, Discount: '0.08', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 1256, Product: 'Eco Supreme', Amount: 7720, Discount: '0.14', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1257, Product: 'Eco Supreme', Amount: 5500, Discount: '0.25', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 1258, Product: 'Eco Supreme', Amount: 5400, Discount: '0.3', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 1259, Product: 'SolarMax', Amount: 3980, Discount: '0.2311111111111111111111111111', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 1260, Product: 'Eco Supreme', Amount: 5650, Discount: '0.175', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 1261, Product: 'Eco Max', Amount: 9560, Discount: '0.176', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Renewable Supplies', }, { Id: 1262, Product: 'Eco Max', Amount: 4900, Discount: '0.04', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Retail', Customer: 'Mercury Solar', }, { Id: 1263, Product: 'Eco Max', Amount: 4800, Discount: '0.08', SaleDate: '2024-05-14T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1264, Product: 'Eco Max', Amount: 1910, Discount: '0.236', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 1265, Product: 'Eco Supreme', Amount: 7790, Discount: '0.105', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 1266, Product: 'Eco Max', Amount: 7420, Discount: '0.032', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 1267, Product: 'Eco Max', Amount: 1830, Discount: '0.268', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 1268, Product: 'SolarMax', Amount: 1740, Discount: '0.2266666666666666666666666667', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 1269, Product: 'Eco Max', Amount: 9570, Discount: '0.172', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'McCord Builders', }, { Id: 1270, Product: 'Eco Supreme', Amount: 7530, Discount: '0.235', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 1271, Product: 'Eco Max', Amount: 1980, Discount: '0.208', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Global Services', }, { Id: 1272, Product: 'Eco Max', Amount: 4530, Discount: '0.188', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 1273, Product: 'EnviroCare', Amount: 6530, Discount: '0.2685714285714285714285714286', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Retail', Customer: 'Solar Warehouse', }, { Id: 1274, Product: 'Eco Max', Amount: 9670, Discount: '0.132', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Retail', Customer: 'Environment Solar', }, { Id: 1275, Product: 'EnviroCare Max', Amount: 8220, Discount: '0.0642857142857142857142857143', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Green Energy Inc', }, { Id: 1276, Product: 'Eco Supreme', Amount: 7670, Discount: '0.165', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 1277, Product: 'Eco Supreme', Amount: 1800, Discount: '0.1', SaleDate: '2024-05-14T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 1278, Product: 'SolarMax', Amount: 4260, Discount: '0.1066666666666666666666666667', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 1279, Product: 'SolarMax', Amount: 2000, Discount: '0.1111111111111111111111111111', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 1280, Product: 'Eco Max', Amount: 4310, Discount: '0.276', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 1281, Product: 'Eco Max', Amount: 9800, Discount: '0.08', SaleDate: '2024-05-14T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Arthur & Sons', }, { Id: 1282, Product: 'Eco Supreme', Amount: 5570, Discount: '0.215', SaleDate: '2024-05-14T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Renewable Supplies', }, { Id: 1283, Product: 'Eco Max', Amount: 7190, Discount: '0.124', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 1284, Product: 'Eco Max', Amount: 9780, Discount: '0.088', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 1285, Product: 'Eco Supreme', Amount: 3400, Discount: '0.3', SaleDate: '2024-05-14T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Retail', Customer: 'Gemini Stores', }, { Id: 1286, Product: 'Eco Max', Amount: 2100, Discount: '0.16', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 1287, Product: 'Eco Supreme', Amount: 5510, Discount: '0.245', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 1288, Product: 'SolarMax', Amount: 8380, Discount: '0.2755555555555555555555555556', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 1289, Product: 'SolarMax', Amount: 1810, Discount: '0.1955555555555555555555555556', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'VARs', Customer: 'Building Management Inc', }, { Id: 1290, Product: 'Eco Max', Amount: 4650, Discount: '0.14', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 1291, Product: 'Eco Max', Amount: 4740, Discount: '0.104', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 1292, Product: 'SolarOne', Amount: 5810, Discount: '0.1266666666666666666666666667', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Green Energy Inc', }, { Id: 1293, Product: 'Eco Max', Amount: 9780, Discount: '0.088', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 1294, Product: 'SolarMax', Amount: 6540, Discount: '0.0933333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'Green Energy Inc', }, { Id: 1295, Product: 'Eco Max', Amount: 4640, Discount: '0.144', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Discovery Systems', }, { Id: 1296, Product: 'SolarMax', Amount: 4210, Discount: '0.1288888888888888888888888889', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 1297, Product: 'EnviroCare', Amount: 1380, Discount: '0.2114285714285714285714285714', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 1298, Product: 'Eco Max', Amount: 4730, Discount: '0.108', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 1299, Product: 'Eco Supreme', Amount: 3540, Discount: '0.23', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 1300, Product: 'Eco Max', Amount: 2120, Discount: '0.152', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 1301, Product: 'SolarMax', Amount: 6480, Discount: '0.12', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 1302, Product: 'SolarMax', Amount: 8700, Discount: '0.1333333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Solar Warehouse', }, { Id: 1303, Product: 'EnviroCare', Amount: 4660, Discount: '0.3371428571428571428571428571', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 1304, Product: 'SolarMax', Amount: 6630, Discount: '0.0533333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Direct', Customer: 'Smith & Co', }, { Id: 1305, Product: 'Eco Max', Amount: 2070, Discount: '0.172', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 1306, Product: 'SolarMax', Amount: 1630, Discount: '0.2755555555555555555555555556', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Mercury Solar', }, { Id: 1307, Product: 'SolarMax', Amount: 4110, Discount: '0.1733333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 1308, Product: 'EnviroCare', Amount: 5040, Discount: '0.12', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 1309, Product: 'Eco Supreme', Amount: 5640, Discount: '0.18', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 1310, Product: 'Eco Supreme', Amount: 7290, Discount: '0.355', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Building Management Inc', }, { Id: 1311, Product: 'Eco Supreme', Amount: 5720, Discount: '0.14', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 1312, Product: 'SolarMax', Amount: 6390, Discount: '0.16', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 1313, Product: 'Eco Max', Amount: 4400, Discount: '0.24', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 1314, Product: 'EnviroCare', Amount: 6570, Discount: '0.2457142857142857142857142857', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 1315, Product: 'Eco Max', Amount: 4790, Discount: '0.084', SaleDate: '2024-05-15T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 1316, Product: 'Eco Max', Amount: 6940, Discount: '0.224', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 1317, Product: 'Eco Max', Amount: 1870, Discount: '0.252', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 1318, Product: 'SolarMax', Amount: 6480, Discount: '0.12', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'McCord Builders', }, { Id: 1319, Product: 'Eco Max', Amount: 4930, Discount: '0.028', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1320, Product: 'Eco Max', Amount: 7360, Discount: '0.056', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 1321, Product: 'Eco Supreme', Amount: 7340, Discount: '0.33', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'VARs', Customer: 'System Integrators', }, { Id: 1322, Product: 'Eco Max', Amount: 7450, Discount: '0.02', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 1323, Product: 'Eco Max', Amount: 7220, Discount: '0.112', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Arthur & Sons', }, { Id: 1324, Product: 'Eco Supreme', Amount: 1890, Discount: '0.055', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'McCord Builders', }, { Id: 1325, Product: 'SolarMax', Amount: 4360, Discount: '0.0622222222222222222222222222', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 1326, Product: 'Eco Max', Amount: 9500, Discount: '0.2', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 1327, Product: 'SolarOne', Amount: 2810, Discount: '0.1266666666666666666666666667', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Market Eco', }, { Id: 1328, Product: 'Eco Max', Amount: 2430, Discount: '0.028', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Building Management Inc', }, { Id: 1329, Product: 'Eco Max', Amount: 2420, Discount: '0.032', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 1330, Product: 'Eco Supreme', Amount: 1790, Discount: '0.105', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 1331, Product: 'Eco Supreme', Amount: 1700, Discount: '0.15', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 1332, Product: 'Eco Supreme', Amount: 5700, Discount: '0.15', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Columbia Solar', }, { Id: 1333, Product: 'Eco Max', Amount: 9490, Discount: '0.204', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 1334, Product: 'SolarMax', Amount: 1890, Discount: '0.16', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'Gemini Stores', }, { Id: 1335, Product: 'Eco Max', Amount: 2110, Discount: '0.156', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Retail', Customer: 'Market Eco', }, { Id: 1336, Product: 'Eco Supreme', Amount: 7470, Discount: '0.265', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 1337, Product: 'Eco Max', Amount: 9400, Discount: '0.24', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 1338, Product: 'Eco Supreme', Amount: 5580, Discount: '0.21', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 1339, Product: 'Eco Max', Amount: 4610, Discount: '0.156', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1340, Product: 'EnviroCare', Amount: 1020, Discount: '0.4171428571428571428571428571', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 1341, Product: 'EnviroCare', Amount: 6610, Discount: '0.2228571428571428571428571429', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Get Solar Inc', }, { Id: 1342, Product: 'Eco Max', Amount: 2410, Discount: '0.036', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'McCord Builders', }, { Id: 1343, Product: 'EnviroCare', Amount: 4690, Discount: '0.32', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 1344, Product: 'Eco Max', Amount: 4390, Discount: '0.244', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Apollo Inc', }, { Id: 1345, Product: 'Eco Supreme', Amount: 3760, Discount: '0.12', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Get Solar Inc', }, { Id: 1346, Product: 'Eco Supreme', Amount: 7840, Discount: '0.08', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 1347, Product: 'SolarMax', Amount: 6620, Discount: '0.0577777777777777777777777778', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 1348, Product: 'Eco Max', Amount: 9310, Discount: '0.276', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 1349, Product: 'SolarMax', Amount: 8280, Discount: '0.32', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 1350, Product: 'Eco Max', Amount: 9830, Discount: '0.068', SaleDate: '2024-05-15T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 1351, Product: 'Eco Supreme', Amount: 7740, Discount: '0.13', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 1352, Product: 'Eco Supreme', Amount: 7570, Discount: '0.215', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 1353, Product: 'Eco Max', Amount: 7430, Discount: '0.028', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 1354, Product: 'Eco Max', Amount: 9510, Discount: '0.196', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 1355, Product: 'Eco Max', Amount: 1800, Discount: '0.28', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 1356, Product: 'Eco Supreme', Amount: 3280, Discount: '0.36', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 1357, Product: 'Eco Max', Amount: 2200, Discount: '0.12', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Global Services', }, { Id: 1358, Product: 'Eco Supreme', Amount: 7440, Discount: '0.28', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 1359, Product: 'SolarMax', Amount: 6500, Discount: '0.1111111111111111111111111111', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Columbia Solar', }, { Id: 1360, Product: 'SolarMax', Amount: 8510, Discount: '0.2177777777777777777777777778', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 1361, Product: 'Eco Max', Amount: 1880, Discount: '0.248', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Gemini Stores', }, { Id: 1362, Product: 'Eco Supreme', Amount: 5730, Discount: '0.135', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Arthur & Sons', }, { Id: 1363, Product: 'Eco Max', Amount: 1840, Discount: '0.264', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 1364, Product: 'Eco Max', Amount: 7080, Discount: '0.168', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 1365, Product: 'Eco Max', Amount: 2320, Discount: '0.072', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 1366, Product: 'Eco Supreme', Amount: 5460, Discount: '0.27', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 1367, Product: 'Eco Max', Amount: 7060, Discount: '0.176', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 1368, Product: 'Eco Max', Amount: 9400, Discount: '0.24', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Health Plus Inc', }, { Id: 1369, Product: 'Eco Max', Amount: 9630, Discount: '0.148', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Environment Solar', }, { Id: 1370, Product: 'Eco Max', Amount: 1990, Discount: '0.204', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 1371, Product: 'Eco Max', Amount: 9590, Discount: '0.164', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 1372, Product: 'Eco Supreme', Amount: 5260, Discount: '0.37', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 1373, Product: 'Eco Max', Amount: 2230, Discount: '0.108', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 1374, Product: 'Eco Max', Amount: 4420, Discount: '0.232', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Retail', Customer: 'Environment Solar', }, { Id: 1375, Product: 'Eco Max', Amount: 4280, Discount: '0.288', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 1376, Product: 'SolarMax', Amount: 8400, Discount: '0.2666666666666666666666666667', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'McCord Builders', }, { Id: 1377, Product: 'SolarMax', Amount: 6600, Discount: '0.0666666666666666666666666667', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 1378, Product: 'EnviroCare', Amount: 6820, Discount: '0.1028571428571428571428571429', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 1379, Product: 'Eco Supreme', Amount: 5260, Discount: '0.37', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Retail', Customer: 'Columbia Solar', }, { Id: 1380, Product: 'Eco Supreme', Amount: 1500, Discount: '0.25', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Green Energy Inc', }, { Id: 1381, Product: 'Eco Max', Amount: 7360, Discount: '0.056', SaleDate: '2024-05-15T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Johnson & Assoc', }, { Id: 1382, Product: 'SolarMax', Amount: 4410, Discount: '0.04', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Retail', Customer: 'Solar Warehouse', }, { Id: 1383, Product: 'Eco Max', Amount: 4900, Discount: '0.04', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1384, Product: 'Eco Max', Amount: 7400, Discount: '0.04', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'System Integrators', }, { Id: 1385, Product: 'SolarOne', Amount: 5650, Discount: '0.2333333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Solar Warehouse', }, { Id: 1386, Product: 'SolarMax', Amount: 6340, Discount: '0.1822222222222222222222222222', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 1387, Product: 'SolarMax', Amount: 1940, Discount: '0.1377777777777777777777777778', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Consultants', Customer: 'Gemini Stores', }, { Id: 1388, Product: 'Eco Supreme', Amount: 1550, Discount: '0.225', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Renewable Supplies', }, { Id: 1389, Product: 'EnviroCare', Amount: 2860, Discount: '0.3657142857142857142857142857', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Building Management Inc', }, { Id: 1390, Product: 'Eco Max', Amount: 9480, Discount: '0.208', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Apollo Inc', }, { Id: 1391, Product: 'Eco Max', Amount: 1960, Discount: '0.216', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Renewable Supplies', }, { Id: 1392, Product: 'Eco Max', Amount: 4880, Discount: '0.048', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 1393, Product: 'Eco Supreme', Amount: 1880, Discount: '0.06', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Supply Warehous', }, { Id: 1394, Product: 'SolarMax', Amount: 1930, Discount: '0.1422222222222222222222222222', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Retail', Customer: 'Get Solar Inc', }, { Id: 1395, Product: 'SolarMax', Amount: 3910, Discount: '0.2622222222222222222222222222', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 1396, Product: 'EnviroCare', Amount: 3270, Discount: '0.1314285714285714285714285714', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 1397, Product: 'Eco Supreme', Amount: 1760, Discount: '0.12', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Discovery Systems', }, { Id: 1398, Product: 'Eco Max', Amount: 9570, Discount: '0.172', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Energy Systems', }, { Id: 1399, Product: 'SolarMax', Amount: 3850, Discount: '0.2888888888888888888888888889', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 1400, Product: 'Eco Max', Amount: 7300, Discount: '0.08', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 1401, Product: 'Eco Max', Amount: 4540, Discount: '0.184', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 1402, Product: 'Eco Max', Amount: 2000, Discount: '0.2', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 1403, Product: 'SolarMax', Amount: 3880, Discount: '0.2755555555555555555555555556', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Environment Solar', }, { Id: 1404, Product: 'SolarOne', Amount: 4240, Discount: '0.1733333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 1405, Product: 'SolarMax', Amount: 4110, Discount: '0.1733333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 1406, Product: 'SolarMax', Amount: 4020, Discount: '0.2133333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 1407, Product: 'Eco Supreme', Amount: 3640, Discount: '0.18', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Green Energy Inc', }, { Id: 1408, Product: 'Eco Max', Amount: 4680, Discount: '0.128', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Get Solar Inc', }, { Id: 1409, Product: 'Eco Max', Amount: 9760, Discount: '0.096', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 1410, Product: 'SolarOne', Amount: 1310, Discount: '0.1266666666666666666666666667', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1411, Product: 'Eco Supreme', Amount: 3870, Discount: '0.065', SaleDate: '2024-05-15T00:00:00', Region: 'Africa', Sector: 'Banking', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 1412, Product: 'Eco Max', Amount: 2100, Discount: '0.16', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Columbia Solar', }, { Id: 1413, Product: 'Eco Supreme', Amount: 5430, Discount: '0.285', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 1414, Product: 'Eco Supreme', Amount: 7490, Discount: '0.255', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 1415, Product: 'Eco Max', Amount: 7210, Discount: '0.116', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 1416, Product: 'Eco Max', Amount: 9390, Discount: '0.244', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 1417, Product: 'Eco Max', Amount: 6800, Discount: '0.28', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Environment Solar', }, { Id: 1418, Product: 'Eco Max', Amount: 2320, Discount: '0.072', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 1419, Product: 'SolarMax', Amount: 4380, Discount: '0.0533333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 1420, Product: 'Eco Supreme', Amount: 3850, Discount: '0.075', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Discovery Systems', }, { Id: 1421, Product: 'Eco Max', Amount: 6820, Discount: '0.272', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 1422, Product: 'Eco Supreme', Amount: 5660, Discount: '0.17', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 1423, Product: 'Eco Max', Amount: 6810, Discount: '0.276', SaleDate: '2024-05-15T00:00:00', Region: 'Africa', Sector: 'Banking', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 1424, Product: 'SolarOne', Amount: 2870, Discount: '0.0866666666666666666666666667', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Get Solar Inc', }, { Id: 1425, Product: 'Eco Max', Amount: 2420, Discount: '0.032', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'VARs', Customer: 'Energy Systems', }, { Id: 1426, Product: 'EnviroCare', Amount: 6900, Discount: '0.0571428571428571428571428571', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Retail', Customer: 'McCord Builders', }, { Id: 1427, Product: 'Eco Max', Amount: 2260, Discount: '0.096', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 1428, Product: 'Eco Max', Amount: 1960, Discount: '0.216', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Solar Warehouse', }, { Id: 1429, Product: 'Eco Max', Amount: 7390, Discount: '0.044', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Resellers', Customer: 'McCord Builders', }, { Id: 1430, Product: 'SolarMax', Amount: 1590, Discount: '0.2933333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 1431, Product: 'Eco Supreme', Amount: 3390, Discount: '0.305', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 1432, Product: 'Eco Supreme', Amount: 5700, Discount: '0.15', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 1433, Product: 'Eco Supreme', Amount: 5280, Discount: '0.36', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Mercury Solar', }, { Id: 1434, Product: 'Eco Max', Amount: 9320, Discount: '0.272', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 1435, Product: 'Eco Supreme', Amount: 5840, Discount: '0.08', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Building Management Inc', }, { Id: 1436, Product: 'Eco Max', Amount: 6770, Discount: '0.292', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 1437, Product: 'SolarOne', Amount: 5360, Discount: '0.4266666666666666666666666667', SaleDate: '2024-05-15T00:00:00', Region: 'Africa', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 1438, Product: 'Eco Supreme', Amount: 5530, Discount: '0.235', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Retail', Customer: 'Environment Solar', }, { Id: 1439, Product: 'Eco Supreme', Amount: 7510, Discount: '0.245', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Beacon Systems', }, { Id: 1440, Product: 'Eco Max', Amount: 7430, Discount: '0.028', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 1441, Product: 'Eco Max', Amount: 4820, Discount: '0.072', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Retail', Customer: 'Arthur & Sons', }, { Id: 1442, Product: 'Eco Supreme', Amount: 5420, Discount: '0.29', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Get Solar Inc', }, { Id: 1443, Product: 'Eco Supreme', Amount: 5920, Discount: '0.04', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Johnson & Assoc', }, { Id: 1444, Product: 'Eco Max', Amount: 4890, Discount: '0.044', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 1445, Product: 'Eco Max', Amount: 7420, Discount: '0.032', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 1446, Product: 'SolarMax', Amount: 4390, Discount: '0.0488888888888888888888888889', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 1447, Product: 'SolarMax', Amount: 8610, Discount: '0.1733333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Resellers', Customer: 'Gemini Stores', }, { Id: 1448, Product: 'SolarMax', Amount: 8870, Discount: '0.0577777777777777777777777778', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 1449, Product: 'Eco Supreme', Amount: 1800, Discount: '0.1', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Get Solar Inc', }, { Id: 1450, Product: 'SolarOne', Amount: 1150, Discount: '0.2333333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Discovery Systems', }, { Id: 1451, Product: 'Eco Max', Amount: 4410, Discount: '0.236', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Retail', Customer: 'Arthur & Sons', }, { Id: 1452, Product: 'Eco Max', Amount: 9480, Discount: '0.208', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Discovery Systems', }, { Id: 1453, Product: 'SolarMax', Amount: 4110, Discount: '0.1733333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Market Eco', }, { Id: 1454, Product: 'Eco Max', Amount: 2360, Discount: '0.056', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Retail', Customer: 'Mercury Solar', }, { Id: 1455, Product: 'Eco Max', Amount: 2280, Discount: '0.088', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'Arthur & Sons', }, { Id: 1456, Product: 'SolarMax', Amount: 8430, Discount: '0.2533333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 1457, Product: 'Eco Max', Amount: 1980, Discount: '0.208', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'System Integrators', }, { Id: 1458, Product: 'Eco Max', Amount: 9340, Discount: '0.264', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Apollo Inc', }, { Id: 1459, Product: 'SolarMax', Amount: 4130, Discount: '0.1644444444444444444444444444', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 1460, Product: 'Eco Supreme', Amount: 1690, Discount: '0.155', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 1461, Product: 'Eco Max', Amount: 1980, Discount: '0.208', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Market Eco', }, { Id: 1462, Product: 'Eco Max', Amount: 2230, Discount: '0.108', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 1463, Product: 'Eco Supreme', Amount: 3380, Discount: '0.31', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 1464, Product: 'Eco Max', Amount: 2290, Discount: '0.084', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Retail', Customer: 'Johnson & Assoc', }, { Id: 1465, Product: 'SolarOne', Amount: 1040, Discount: '0.3066666666666666666666666667', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Manufacturing', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 1466, Product: 'SolarMax', Amount: 6120, Discount: '0.28', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 1467, Product: 'SolarOne', Amount: 5830, Discount: '0.1133333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Solar Warehouse', }, { Id: 1468, Product: 'EnviroCare', Amount: 4580, Discount: '0.3828571428571428571428571429', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 1469, Product: 'Eco Max', Amount: 4800, Discount: '0.08', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'VARs', Customer: 'Arthur & Sons', }, { Id: 1470, Product: 'Eco Max', Amount: 4520, Discount: '0.192', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 1471, Product: 'EnviroCare', Amount: 5090, Discount: '0.0914285714285714285714285714', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 1472, Product: 'Eco Max', Amount: 9770, Discount: '0.092', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Resellers', Customer: 'Arthur & Sons', }, { Id: 1473, Product: 'Eco Supreme', Amount: 5360, Discount: '0.32', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 1474, Product: 'Eco Max', Amount: 4850, Discount: '0.06', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 1475, Product: 'Eco Supreme', Amount: 5640, Discount: '0.18', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 1476, Product: 'Eco Max', Amount: 6830, Discount: '0.268', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 1477, Product: 'SolarMax', Amount: 4010, Discount: '0.2177777777777777777777777778', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'VARs', Customer: 'Beacon Systems', }, { Id: 1478, Product: 'Eco Max', Amount: 4690, Discount: '0.124', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Beacon Systems', }, { Id: 1479, Product: 'Eco Supreme', Amount: 7810, Discount: '0.095', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 1480, Product: 'SolarOne', Amount: 5880, Discount: '0.08', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Banking', Channel: 'Direct', Customer: 'Johnson & Assoc', }, { Id: 1481, Product: 'Eco Max', Amount: 2340, Discount: '0.064', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'VARs', Customer: 'Global Services', }, { Id: 1482, Product: 'Eco Max', Amount: 6950, Discount: '0.22', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Telecom', Channel: 'Retail', Customer: 'Market Eco', }, { Id: 1483, Product: 'EnviroCare', Amount: 1560, Discount: '0.1085714285714285714285714286', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Columbia Solar', }, { Id: 1484, Product: 'SolarOne', Amount: 3850, Discount: '0.4333333333333333333333333333', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'VARs', Customer: 'Smith & Co', }, { Id: 1485, Product: 'Eco Supreme', Amount: 5500, Discount: '0.25', SaleDate: '2024-05-15T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 1486, Product: 'SolarMax', Amount: 6520, Discount: '0.1022222222222222222222222222', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Columbia Solar', }, { Id: 1487, Product: 'Eco Supreme', Amount: 5310, Discount: '0.345', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 1488, Product: 'SolarMax', Amount: 6280, Discount: '0.2088888888888888888888888889', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Smith & Co', }, { Id: 1489, Product: 'Eco Supreme', Amount: 1820, Discount: '0.09', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Direct', Customer: 'Building Management Inc', }, { Id: 1490, Product: 'Eco Max', Amount: 7140, Discount: '0.144', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 1491, Product: 'SolarMax', Amount: 3780, Discount: '0.32', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1492, Product: 'Eco Supreme', Amount: 7260, Discount: '0.37', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Supply Warehous', }, { Id: 1493, Product: 'Eco Max', Amount: 9800, Discount: '0.08', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Telecom', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1494, Product: 'EnviroCare', Amount: 1360, Discount: '0.2228571428571428571428571429', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Resellers', Customer: 'Health Plus Inc', }, { Id: 1495, Product: 'Eco Max', Amount: 7010, Discount: '0.196', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 1496, Product: 'Eco Max', Amount: 6830, Discount: '0.268', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Health', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 1497, Product: 'Eco Supreme', Amount: 3300, Discount: '0.35', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Global Services', }, { Id: 1498, Product: 'SolarMax', Amount: 8350, Discount: '0.2888888888888888888888888889', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Health', Channel: 'Consultants', Customer: 'McCord Builders', }, { Id: 1499, Product: 'SolarMax', Amount: 6460, Discount: '0.1288888888888888888888888889', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Health Plus Inc', }, { Id: 1500, Product: 'Eco Max', Amount: 6890, Discount: '0.244', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Telecom', Channel: 'Resellers', Customer: 'Market Eco', }, { Id: 1501, Product: 'SolarOne', Amount: 5880, Discount: '0.08', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 1502, Product: 'EnviroCare', Amount: 2820, Discount: '0.3885714285714285714285714286', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 1503, Product: 'Eco Supreme', Amount: 5370, Discount: '0.315', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Consultants', Customer: 'Market Eco', }, { Id: 1504, Product: 'Eco Supreme', Amount: 7850, Discount: '0.075', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 1505, Product: 'Eco Max', Amount: 7380, Discount: '0.048', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Health', Channel: 'Consultants', Customer: 'Energy Systems', }, { Id: 1506, Product: 'Eco Max', Amount: 7110, Discount: '0.156', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Mercury Solar', }, { Id: 1507, Product: 'SolarMax', Amount: 1800, Discount: '0.2', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Banking', Channel: 'Retail', Customer: 'Building Management Inc', }, { Id: 1508, Product: 'Eco Max', Amount: 7270, Discount: '0.092', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Banking', Channel: 'Direct', Customer: 'Mercury Solar', }, { Id: 1509, Product: 'EnviroCare', Amount: 5060, Discount: '0.1085714285714285714285714286', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1510, Product: 'Eco Max', Amount: 1830, Discount: '0.268', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Telecom', Channel: 'Retail', Customer: 'Building Management Inc', }, { Id: 1511, Product: 'Eco Supreme', Amount: 1680, Discount: '0.16', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Manufacturing', Channel: 'Consultants', Customer: 'Health Plus Inc', }, { Id: 1512, Product: 'EnviroCare', Amount: 3340, Discount: '0.0914285714285714285714285714', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Supply Warehous', }, { Id: 1513, Product: 'SolarMax', Amount: 6280, Discount: '0.2088888888888888888888888889', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'Direct', Customer: 'Get Solar Inc', }, { Id: 1514, Product: 'Eco Max', Amount: 4720, Discount: '0.112', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Direct', Customer: 'Energy Systems', }, { Id: 1515, Product: 'SolarMax', Amount: 6290, Discount: '0.2044444444444444444444444444', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Arthur & Sons', }, { Id: 1516, Product: 'Eco Max', Amount: 2220, Discount: '0.112', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'Direct', Customer: 'Smith & Co', }, { Id: 1517, Product: 'Eco Supreme', Amount: 1400, Discount: '0.3', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'Johnson & Assoc', }, { Id: 1518, Product: 'SolarMax', Amount: 6380, Discount: '0.1644444444444444444444444444', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Resellers', Customer: 'Beacon Systems', }, { Id: 1519, Product: 'SolarOne', Amount: 2430, Discount: '0.38', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Consultants', Customer: 'System Integrators', }, { Id: 1520, Product: 'Eco Max', Amount: 4410, Discount: '0.236', SaleDate: '2024-05-15T00:00:00', Region: 'Africa', Sector: 'Insurance', Channel: 'Direct', Customer: 'McCord Builders', }, { Id: 1521, Product: 'Eco Supreme', Amount: 7280, Discount: '0.36', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Environment Solar', }, { Id: 1522, Product: 'SolarOne', Amount: 4020, Discount: '0.32', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Health', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 1523, Product: 'Eco Max', Amount: 6990, Discount: '0.204', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Retail', Customer: 'Gemini Stores', }, { Id: 1524, Product: 'Eco Supreme', Amount: 3890, Discount: '0.055', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Banking', Channel: 'Direct', Customer: 'System Integrators', }, { Id: 1525, Product: 'Eco Supreme', Amount: 3720, Discount: '0.14', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Insurance', Channel: 'Resellers', Customer: 'Solar Warehouse', }, { Id: 1526, Product: 'Eco Max', Amount: 9770, Discount: '0.092', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Columbia Solar', }, { Id: 1527, Product: 'Eco Max', Amount: 7190, Discount: '0.124', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Mercury Solar', }, { Id: 1528, Product: 'Eco Max', Amount: 9900, Discount: '0.04', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'VARs', Customer: 'Green Energy Inc', }, { Id: 1529, Product: 'SolarMax', Amount: 8360, Discount: '0.2844444444444444444444444444', SaleDate: '2024-05-15T00:00:00', Region: 'Africa', Sector: 'Health', Channel: 'Retail', Customer: 'Solar Warehouse', }, { Id: 1530, Product: 'EnviroCare', Amount: 2980, Discount: '0.2971428571428571428571428571', SaleDate: '2024-05-15T00:00:00', Region: 'South America', Sector: 'Insurance', Channel: 'VARs', Customer: 'Apollo Inc', }, { Id: 1531, Product: 'Eco Max', Amount: 2400, Discount: '0.04', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Health', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 1532, Product: 'Eco Supreme', Amount: 1670, Discount: '0.165', SaleDate: '2024-05-15T00:00:00', Region: 'North America', Sector: 'Manufacturing', Channel: 'Resellers', Customer: 'Energy Systems', }, { Id: 1533, Product: 'SolarMax', Amount: 1750, Discount: '0.2222222222222222222222222222', SaleDate: '2024-05-15T00:00:00', Region: 'Europe', Sector: 'Insurance', Channel: 'VARs', Customer: 'Gemini Stores', }, { Id: 1534, Product: 'Eco Max', Amount: 1790, Discount: '0.284', SaleDate: '2024-05-15T00:00:00', Region: 'Asia', Sector: 'Banking', Channel: 'Retail', Customer: 'Health Plus Inc', }, { Id: 1535, Product: 'Eco Max', Amount: 2270, Discount: '0.092', SaleDate: '2024-05-15T00:00:00', Region: 'Australia', Sector: 'Insurance', Channel: 'Direct', Customer: 'Apollo Inc', }, ];
<!DOCTYPE html> <html lang="en"> <head> <title>DevExtreme Demo</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0" /> <link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/25.2.3/css/dx.light.css" /> <link rel="stylesheet" type="text/css" href="styles.css" /> <script src="https://cdn.jsdelivr.net/npm/core-js@2.6.12/client/shim.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/systemjs@0.21.3/dist/system.js"></script> <script type="text/javascript" src="config.js"></script> <script type="text/javascript"> System.import("./index.tsx"); </script> </head> <body class="dx-viewport"> <div class="demo-container"> <div id="app"></div> </div> </body> </html>
.dx-datagrid .dx-data-row > td.bullet { padding-top: 0; padding-bottom: 0; }