HomeGoogle DocsSpreadsheetHow to Right Join Two Tables in Google Sheets

How to Right Join Two Tables in Google Sheets

Published on

In Google Sheets, a right join merges data from two tables, keeping all records from the right table and including matching records from the left table.

This join guarantees preserving all data from the right table, even if certain values lack corresponding entries in the left table.

The right table should have unique values in the common field for an effective right join. This precaution helps prevent ambiguity and ensures accurate data merging.

Note: If you have duplicated IDs in both ID columns (left and right tables), please check out this guide: Conquer Duplicate IDs: Master Left, Right, Inner, & Full Joins in Google Sheets.

Right Join Two Tables: Sample Tables and Resulting Table

This example illustrates a right join scenario where the left table contains departments, and the right table contains employee names and their date of joining.

Table 1: Departments

Emp IDDepartment
101HR
101Accounts
102Fire & Safety
102Industrial Safety
103Marketing
104Admin

Table 2: Employees

Emp IDEmp NameDOJ
101John Doe02/01/2023
102Jane Smith01/11/2022
103Bob Johnson15/06/2020
104Alice Brown10/08/2022
105Charlie Davis01/01/2019

Employee ID serves as the common field in both tables, enabling a right join. Importantly, the right table has unique records for employee IDs.

The result would be a combined table containing all employee records from the right table, along with their corresponding department information (if available) from the left table.

Expected Result:

Emp IDDepartmentEmp IDEmp NameDOJ
101HR101John Doe02/01/2023
101Accounts101John Doe02/01/2023
102Fire & Safety102Jane Smith01/11/2022
102Industrial Safety102Jane Smith01/11/2022
103Marketing103Bob Johnson15/06/2020
104Admin104Alice Brown10/08/2022
105Charlie Davis01/01/2019

Please scroll down to see the screenshot of the above tables in Google Sheets.

Array Formula for Right Joining Two Tables in Google Sheets

To execute a right join on two tables in Google Sheets, a complex formula involving several functions can be utilized. However, you only need to specify the table ranges and unique identifier column ranges, and the formula will handle the rest.

Here’s the formula for performing a right join on two tables, assuming the right table has unique records in Google Sheets.

Formula:

=ArrayFormula(
     LET(
          lt, A2:B8, lt_id, A2:A8, rt, D2:F7, rt_id, D2:D7, 
          merge1, REDUCE("", rt_id, LAMBDA(a, v, IFNA(VSTACK(a, HSTACK(v, FILTER(lt, lt_id=v)))))), 
          key, SCAN("", CHOOSECOLS(merge1, 1), LAMBDA(a, v, IF(v="", a, v))), 
          merge2, HSTACK(merge1, VLOOKUP(key, HSTACK(rt_id, rt), SEQUENCE(1, COLUMNS(rt), 2), 0)), 
          CHOOSEROWS(CHOOSECOLS(merge2, SEQUENCE(1, COLUMNS(merge2)-1, 2)), SEQUENCE(ROWS(key)-1, 1, 2))
     )
)
Example of Right Joining Two Tables in Google Sheets

After right joining two tables, you may need to apply ‘Format > Number > Date’ to any column that contains date values. You can find the right join array formula in cell A12 of the third sheet in the provided sample sheet below.

Sample Sheet

Anatomy of the Right Join Formula

The right join formula utilizes the LET function to assign ‘name’ to ‘value_expression’ results and returns the result of the ‘formula_expression’, which represents the resulting table from the right join.

Syntax of the LET Function:

LET(name1, value_expression1, [name2, …], [value_expression2, …], formula_expression)

LET Assignments

  • lt (name1): Defines the data range of the left table, including the header row.
    • A2:B8 (value_expression1): Data range of the left table.
  • lt_id (name2): Defines the ID column of the left table, including the header row.
    • A2:A8 (value_expression2): ID column of the left table.
  • rt (name3): Defines the data range of the right table, including the header row.
    • D2:F7 (value_expression3): Data range of the right table.
  • rt_id (name4): Defines the ID column of the right table, including the header row.
    • D2:D7 (value_expression4): ID column of the right table.

Note: When employing the formula above for a right join of two tables in Google Sheets, you only need to adjust the value_expressions 1 to 4 according to your specific table configurations.

Other LET Assignments

REDUCE Part:

  • merge1 (name5)
    • REDUCE("", rt_id, LAMBDA(a, v, IFNA(VSTACK(a, HSTACK(v, FILTER(lt, lt_id=v)))))) (value_expression5): Filter the rows in the left table that match the Emp ID in the right table, and horizontally stack the Emp ID column from the right table with the corresponding rows from the left table (please refer to the image below).
      • FILTER(lt, lt_id=v): This FILTER function extracts rows from the left table (lt) where the left table’s Emp ID (lt_id) matches the current element (v) from the right table’s Emp ID (rt_id).
      • HSTACK(v, FILTER(lt, lt_id=v)): This function stacks the current element (v) horizontally with the result of the FILTER function (potentially multiple records from the left table). Empty cells may appear if the filter returns more than one record.
      • REDUCE with LAMBDA: This function iterates through the right table’s Emp ID (rt_id) array and applies the provided LAMBDA function to each element. The LAMBDA function vertically stacks the accumulated result of HSTACK (current element + matching left table records) in each iteration.
REDUCE Part of Right Joining

SCAN Part:

  • key (name6)
    • SCAN("", CHOOSECOLS(merge1, 1), LAMBDA(a, v, IF(v="", a, v))) (value_expression6): Fill blank cells in the first column of merge1 (REDUCE part) with the values from the cell above.
      • The SCAN function starts with an empty accumulator ("").
      • It iterates through each cell in the first column (CHOOSECOLS(merge1, 1)).
      • The LAMBDA function checks the current element (v).
      • If v is an empty string, it uses the accumulator value (a) and updates the accumulator.
      • If v is not an empty string, it uses the current element value (v) and updates the accumulator.

This achieves the intended behavior of filling in gaps in the first column of the merge1 table.

Keys to Retain All Records from the Right Table, Regardless of Matches in the Left Table

HSTACK and VLOOKUP Part:

This section performs a right join between two tables. However, the result may include an undesired row and column.

  • merge2 (name7)
    • HSTACK(merge1, VLOOKUP(key, HSTACK(rt_id, rt), SEQUENCE(1, COLUMNS(rt), 2), 0)) (value_expression7): This formula combines the merge1 (Reduce part) table with the results of a VLOOKUP lookup based on the key (SCAN part) value. Let’s break it down step-by-step:
  1. HSTACK(merge1, …):
  • HSTACK horizontally stacks two or more tables or ranges.
  • Here, it combines the existing merge1 table with the results of the VLOOKUP lookup.
  1. VLOOKUP(…):
  • This section executes a VLOOKUP to match key values in the right table (rt) and retrieve corresponding values. It will match all the key values since these keys are derived in a prior step from the right table itself. The only distinction is that the key may include multiple occurrences of Emp IDs, depending on how often they appear in the left table.
  • VLOOKUP(key, …): searches for the key value within the specified range.
  • HSTACK(rt_id, rt): Defines the range for the search. It merges the rt_id column with the entire rt table. This meets the criteria for VLOOKUP as it searches the first column of the lookup table for the search keys.
  • SEQUENCE(1, COLUMNS(rt), 2): specifies which columns to return from the rt table. It starts at column 2 (excluding the rt_id column) and returns all subsequent columns.
Raw Data (Merged) from Right Join of Two Tables

LET Formula Expression

CHOOSEROWS(CHOOSECOLS(merge2, SEQUENCE(1, COLUMNS(merge2)-1, 2)), SEQUENCE(ROWS(key)-1, 1, 2))

We aim to exclude the first row (a row with blank or N/A values) and the first column (containing the rt_id column with blanks) from the result. To achieve this, we utilize CHOOSEROWS and CHOOSECOLS.

  1. CHOOSECOLS(merge2, SEQUENCE(1, COLUMNS(merge2)-1, 2)):
  • CHOOSECOLS selects specific columns from a table or range.
  • merge2 is the combined table created in the earlier part of the formula.
  • SEQUENCE(1, COLUMNS(merge2)-1, 2) Defines the columns to be selected. It generates a sequence that matches the number of columns in merge2 minus 1, starting from 2. This effectively chooses all columns except the first one.
  1. CHOOSEROWS(…):
  • CHOOSEROWS selects specific rows from a table or range based on row index criteria.
  • CHOOSECOLS(…) is the table containing the columns we want to select rows from.
  • SEQUENCE(ROWS(key)-1, 1, 2) Defines the row indices to be selected. It generates a sequence starting from 2 up to one less than the total number of rows in the key table. This selects all the rows except the first row containing blanks or N/A.

Related Resources:

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Appointment Schedule Template in Google Sheets

An appointment schedule template in Google Sheets can assist you in efficiently managing your...

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Running Total By Month in Excel

This tutorial demonstrates how to calculate the running total by month in a range...

SORT and SORTBY – Excel Vs Google Sheets

While Excel offers the SORT and SORTBY functions for sorting a table, Google Sheets...

More like this

Appointment Schedule Template in Google Sheets

An appointment schedule template in Google Sheets can assist you in efficiently managing your...

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Interactive Random Task Assigner in Google Sheets

You have multiple tasks and multiple people. Here's a fun way to randomly assign...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.