Doc Biwee
English
English
  • Presentation of Biwee
  • Get Started
    • Install Biwee
    • Video : My first steps with Biwee
  • Create dashboard
    • Add a visual component
      • Chart
      • Pie
      • Cards
      • Treemap
      • Text Box
      • Pivot Grid
      • Tabs
      • Scatter Chart
      • Gauge
      • Images
      • Grid
      • Range Filter
      • Filter Elements
      • Geo Points Map
      • Choropleth Map
      • Groups
    • Right-click on a component
    • Export a visual component
    • Maximize a visual component
    • Interactivity of a component
    • Data filters in components
    • Dashboard parameters
    • Conditionnal formatting
    • Interactions between dashboard
  • API Integration
  • Data Analyse
    • Performing calculations on data
    • Configure a calculated field
    • Directory of functions
    • Configure calcul in a visual component
    • Aggregate function
      • Aggregations at an intermediate level
      • Usage examples and use cases for the aggr() function
    • Window calculation
  • Settings
    • My account
    • User groups
    • Agent
    • Company settings
    • Options
    • About Biwee
  • Data connection
    • Introduction
    • Database connectors
    • Social network connectors
    • Emailing connectors
    • Files connectors
    • Other connectors
  • Sharing in Biwee
  • Creation of queries
    • Queries on databases
    • SQL Querie parameters
  • Back office biwee
    • User management
  • Changelog
    • Version 3.3
Propulsé par GitBook
Sur cette page
  • Excel file
  • Stored locally
  • Stored on a FTP/SFTP
  • Stored on One drive / Google drive
  • Query definition for Excel files
  • CSV file
  • Stored locally
  • Stored on FTP/SFTP
  • Stored on One drive / Google drive
  • Properties definition for CSV files
  • Json
  • Stored locally
  • Stored on FTP/SFTP
  • Stored on One drive / Google drive
  • Properties for JSON files
  • Google Sheets

Cet article vous a-t-il été utile ?

  1. Data connection

Files connectors

PrécédentEmailing connectorsSuivantOther connectors

Dernière mise à jour il y a 2 ans

Cet article vous a-t-il été utile ?

Excel file

No matter if you want to access it locally or online you have to specify a connection name.

Stored locally

It is possible to add an Excel file in several ways:

  • By dragging and dropping it into the drop zone.

  • A click on the drop zone opens the Windows explorer where you can select your Excel file.

  • Enter the location of your file.

Don't forget to fill in the password if the Excel workbook is protected.

Stored on a FTP/SFTP

To access your Excel file on an FTP you must fill in the following fields:

  • FTP Server

  • Full location of the file

  • Authentication:

    • Username

    • Password

  • SFTP settings

    • Key SSH

    • PassPhrase

Don't forget to fill in the password if the Excel workbook is protected.

Stored on One drive / Google drive

To access your Excel file on a One drive or a Google drive, connect to your account:

Once you have logged in and authorized Biwee to access your files you can return to Biwee where you will select your Excel file.

Query definition for Excel files

Once your file is loaded, you have the possibility to choose the sheets to use. To do this you can either:

  • Check the sheets to load

  • Enter a regular expression that will define all the sheets to be loaded

Method 1: Select sheets from the drop-down list

Biwee takes care of concatenating the data from the selected sheets into a single data grid. In the "Results" tab, you can see all the data of the selected sheets and an additional column indicates the corresponding sheet.

Method 2: selection of sheets by regular expression

To do this, check the option "Use a regular expression" and in the free text area enter the desired regular expression.

In this example, by entering "^Sales", Biwee will load the data of all sheets whose name starts with Sales.

Biwee takes care of concatenating the data from the selected sheets into a single data grid. In the "Results" tab, you can see all the data of the selected sheets and an additional column indicates the corresponding sheet.

Common regular expressions

Here are some regular expressions that can be useful :

  • select all the sheets whatever the sheetnames .

  • select all the sheets whose name starts with the word : ^word

  • select all the sheets whose name ends with the word : word$

  • select all the sheets whose name contains one or many numbers : \d or[0-9]

  • select all the sheets whose name contains one or many low case characters : [a-z]

It is possible to combine different sets, for example:

  • select all the sheets whose name contains numbers, letters or underscores: [a-zA-Z0-9_] or\w

  • select all the sheets whose name start with Sales and tha ends with a date MM_YYYY (for example exemple 05_2023): ^Sales.*\d{2}_\d{4}$

This regular expression checks if the sheetname starts with Sales with the expression ^Sales

Then, it accepts all the characters (.) repeated from 0 to many times (*), with the expression .*

Then it checks if the name ends with exaclty two digits \d{2} followed by an underscore _ then exactly 4 digits \d{4} with the end marker $

The regular expression ^Sales.*\d{2}_\d{4}$ enables to get the following sheetnames for example :

Sales_05_2023, Sales_06_2023, SalesProducts_France_06_2023, etc.

CSV file

No matter if you want to access it locally or online you have to specify a connection name.

Stored locally

It is possible to add a CSV file in several ways:

  • Drag and drop in the drop zone.

  • A click on the drop zone opens the Windows explorer where you can select your CSV file.

  • Enter the location of your file.

Stored on FTP/SFTP

To access your CSV file on an FTP you must fill in the following fields:

  • FTP Server

  • Full location of the file

  • Authentication :

    • Username

    • Password

  • SFTP Settings

    • SSH Key

    • PassPhrase

Stored on One drive / Google drive

To access your CSV file on a One drive or Google drive, log in to your account:

Once you have logged in and authorized Biwee to access your files you can return to Biwee where you will select your CSV file.

Properties definition for CSV files

For a better reading of the CSV file, please fill in:

Json

No matter if you want to access it locally or online you have to specify a connection name.

Stored locally

It is possible to add a Json file in several ways:

  • Drag and drop in the drop zone.

  • A click on the drop zone opens the Windows explorer where you can select your Json file.

  • Enter the location of your file.

Stored on FTP/SFTP

To access your Json file on FTP you must fill in the following fields

  • FTP Server

  • Full location of the file

  • Authentication :

    • Username

    • Password

  • SFTP settings

    • SSH Key

    • PassPhrase

Stored on One drive / Google drive

To access your Json file on a One drive or Google drive, log in to your account:

Once you have logged in and authorized Biwee to access your files you can go back to Biwee where you will select your Json file.

Properties for JSON files

Google Sheets

You must fill in the field "Connection name" with what you want.

To access your Google Sheets file on a Google drive, login to your account:

Once you have logged in and authorized Biwee to access your files you can go back to Biwee where you will select your Google Sheets file.

In order to load several sheets, they must have the same number of columns, the same name and be in the same order.

⚠️
1st method - Select sheets
2nd method - Regular expression