Try it
  • Examples
  • Features
  • Testimonials
  • Partners
  • Pricing
  • Support
    • Sintel Apps Help
    • Sintel Apps Release History
    • Sintel BI Help
    • Sintel BI Release History
    • Webinars
    • How to video series
    • Ask the community
    • Submit a ticket
    • Request a demo
    • Compare us
  • Blog
  • Examples
  • Features
  • Testimonials
  • Partners
  • Pricing
  • Support
    • Sintel Apps Help
    • Sintel Apps Release History
    • Sintel BI Help
    • Sintel BI Release History
    • Webinars
    • How to video series
    • Ask the community
    • Submit a ticket
    • Request a demo
    • Compare us
    • For Schools
  • Blog
  • Get Started
How can we help?

Search for answers or browse articles about Sintel BI

Filter by categories Clear Results
  • Getting Started

    • What is Sintel BI
    • How to install Sintel BI
    • How to configure Sintel BI
    • How to use Sintel BI
    • How to install Sintel BI without AppSource
    • Sintel BI Best Practices
  • Data Sources

    • Data Sources
    • MS SQL
    • Excel
    • How to Merge Data Sources
  • Charts

    • Area Chart
    • Column Chart
    • Doughnut Chart
    • Line Chart
    • Pie Chart
    • Pyramid Chart
    • RAG area chart
    • RAG line chart
    • Spline Chart
    • Spline Area Chart
    • Stacked Column Chart
    • Stacked Line Chart
    • Step line chart
    • Polar Charts
    • Gauge Charts
  • Grids

    • Grid
    • Pivot Grid
    • Scheduler
  • Filters

    • Dashboard Level Filtering

      • User Filter
      • Multi-source dropdown filter
      • Dropdown Filter
      • Date Filter
      • Dashboard Override
    • Data Source Level Filtering

      • Data Source Filter
      • Dashboard Override
      • Dynamic Column
    • Filtering Guide: Understanding Your Options
  • General components

    • Image
    • Summary Card
    • Text
    • Maps
    • Kanban Board
    • Card
    • Custom HTML
    • Smart Card
    • Button
  • FAQs

    • Lists used by Sintel BI
    • Components Guide
    • Convert a Classic SharePoint site to a Modern Site
    • Permissions Required to Use Sintel BI
  • Troubleshooting

    • Cannot update the Sintel BI App
    • Cannot open Sintel Forms in a dialog
    • Blank screen when opening a dashboard
    • Warning when opening a dashboard
    • Error when attempting to view data in a data source
    • Error displaying data on a Dashboard
    • Cannot export an app due to outdated data sources
    • Cannot export an app due to error
    • How to remove or reinstall Sintel BI
    • Cannot Export a Sintel App Template due to long internal field names
    • Cannot share dashboards with AD groups
    • Warning SintelBISPSPrinciples does not exist
    • Sintel BI The Server Isnt Responding Temporary Fix And AppSource
  • Product Updates

    • Release History
    • How to update Sintel BI
  • Create App Templates

    • How to Import/Export a Sintel BI App
    • Sintel App Template Permissions
  • Settings

    • Navigation
    • The Sintel BI App Hub
  • Other

    • Web Parts
  • Advanced Features

    • Creating a Custom Landing Page in Sintel BI with CSS

How to Merge Data Sources

Posted6 February 2025
Updated6 February 2025
ByAmy Dermody
You are here:
  • Main
  • Data Sources
  • How to Merge Data Sources
0 out of 5 stars
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
< All Topics

Merging data sources in Sintel BI allows you to combine information from multiple datasets, helping to create more detailed reports and dashboards. This guide explains how to merge data sources, the different join types (Left Outer and Inner Joins), and when to use them effectively.

When Should You Merge Data Sources?

Merging data sources is useful when:
✅ You need to combine related information from different sources (e.g., linking customer orders with customer details).
✅ You want to enrich a dataset with extra details from another source.
✅ You need to create a unified dashboard from multiple datasets.

Be cautious when merging if:

? Your data sources do not share a clear matching column.
? One dataset has missing or inconsistent data.
? Depending on the chosen join type, some records may appear multiple times or be excluded from the final dataset. Choosing the correct join type ensures the data is merged as expected.

Step-by-Step Guide to Merging Data Sources in Sintel BI

Step 1: Select a Data Source

  1. Open Sintel BI and navigate to an existing data source.
  2. Click the “+” icon labelled “Connect data source”.
  3. From the dropdown, select an existing data source.
    • Alternatively, click “Create new data source” and connect to:
      • A SharePoint list or library (from your SharePoint site or tenant).
      • Microsoft SQL Server.
      • Excel files.

Step 2: Merge the Data Sources

  1. Once the new data source is connected, a red flashing “Merge” icon will appear.
  2. Click “Merge”.
  3. A dialogue box will open where you will:
    • Select matching columns (these should have the same data type and content across the two data sources).
    • Choose a Join Type to define how the datasets should be merged.

Step 3: Choose a Join Type

When merging data sources in Sintel BI, you must choose a Join Type. This determines how data from both sources will be combined.

There are two main types of joins available:

Left Outer Join (“All from first, matching from second”)
  • Keeps all records from the first dataset.
  • Only adds matching data from the second dataset where a match exists.
  • If there’s no match, the second dataset’s fields will appear empty (NULL) for that row.

Use this when:

  • You want to retain everything from your first dataset.
  • You don’t mind if some rows appear empty from the second dataset.
  • You’re working with a primary dataset (e.g., a full list of products, customers, or locations) and want to add extra details where available.
Inner Join (“Matching from both”)
  • Keeps only records that have a match in both datasets.
  • If a record in the first dataset doesn’t have a match in the second, it will not appear in the final merged dataset.

Use this when:

  • You only need fully matching data from both sources.
  • You don’t want to include any records that are missing a corresponding match.
  • You’re filtering down to only relevant records (e.g., finding customers who have both made a purchase and signed up for marketing emails).
Example 1: Left Outer Join – Merging Superheroes with Their Sidekicks

Imagine you have two datasets:

1️⃣ Superheroes Dataset – A list of all superheroes.
2️⃣ Sidekicks Dataset – A list of superheroes that have an official sidekick.

If we merge them using Left Outer Join (keeping all superheroes and adding sidekick data where available), we get:

Superhero Sidekick
Batman Robin
Superman
Spider-Man
Iron Man
Shrek Donkey
Wonder Woman

 

Why use Left Outer Join?

  • It keeps all superheroes in the dataset, even if they don’t have a sidekick.
  • If a superhero has a sidekick, they appear in the second column.
  • If a superhero does not have a sidekick, it appears empty, but the hero is still listed.

This is useful if you want to track which superheroes are solo and might need a sidekick soon.

Example 2: Inner Join – Merging Superheroes with Sidekicks (Only Showing Those with a Sidekick)

Now imagine we use an Inner Join instead. This means we only keep superheroes who actually have a sidekick.

Superhero Sidekick
Batman Robin
Shrek Donkey

 

Why use Inner Join?

  • It removes all superheroes who don’t have a sidekick.
  • The final dataset only contains those who have a trusted partner in crime-fighting (or swamp-defending).

This is useful if you only care about dynamic duos and don’t want to see the lone wolves.

 

Step 4: Save and Refresh the Merged Data Source

  1. Click “Save” to finalise the merge.
  2. Click “Refresh” in the Data Preview section to verify the merge.
Connect a second data source
Select Data Source to connect
Merge Data Sources
Select the matching columns and pick Join Kind
Prev
Next

Handling Duplicate Column Names in Merged Data

If both datasets contain a column with the same name, such as “Date,” it will be difficult to distinguish which column belongs to which dataset once the data is merged.

For example:

  • Orders Dataset has a column named “Date” (representing order dates).
  • Payments Dataset also has a column named “Date” (representing payment dates).

When these datasets are merged, both columns will appear as “Date”, making it unclear which one corresponds to orders and which one corresponds to payments.

How to Fix This

To avoid confusion, you can rename columns directly within the Sintel BI data source.

  1. Click the “⋯” (three dots button) next to the column name.
  2. Select Rename.
  3. Add a prefix to clarify its source, such as:
    • Orders_Date (for the order date).
    • Payments_Date (for the payment date).

This ensures that when merging datasets, the data remains clear and easy to use in reports and dashboards.

 

Best Practices for Merging Data Sources

✔ Check your matching columns – Ensure they are in the same format (e.g., text vs. numbers).
✔ Rename columns with the same name – Add a prefix before merging to differentiate them and maintain clarity in your dataset (e.g., “Orders_Date” and “Payments_Date”).
✔ Use Left Outer Join when keeping all records is important, and Inner Join for clean, focused reports.

By following these steps, you can efficiently merge data sources in Sintel BI, whether you’re analysing business data or assembling the ultimate superhero registry! ?‍♂️

 

Was this article helpful?
0 out of 5 stars
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
5
How can we improve this article?
Please submit the reason for your vote so that we can improve the article.
Table of Contents

Sintel Apps

Create apps on Microsoft 365 in minutes with no code.

Address

River House
Blackpool Park,
Cork, T23 R5TF,
Ireland

Support

  • Product help
  • Community site
  • Submit a ticket
  • Compare us

    Contact us to

    • Book a demo
    • Request a license
    • Become a partner

    e-mail: info@sintelapps.com
    tel: +353 (0) 21 245 2935

    Follow us

    • Follow
    • Follow
    • Follow

    © Copyright 2026 | End User License Agreement | Privacy Policy | Terms Of Use

    Sintel Apps
    Sintel Apps Assistant
    Get instant answers and support
    Connecting to Sintel Apps Assistant…
    Sintel is thinking…
    We use cookies to collect and analyse information about the users of this website. Please click 'I accept' to consent to the use of this technology.