0
0
Google Sheetsspreadsheet~8 mins

UNIQUE function in Google Sheets - Dashboard Guide

Choose your learning style9 modes available
Dashboard Mode - UNIQUE function
Goal

Find all unique product names sold from a list with duplicates.

Sample Data
Order IDProductQuantity
1001Apple5
1002Banana3
1003Apple2
1004Orange4
1005Banana1
1006Grapes6
1007Orange2
Dashboard Components
  • Unique Products List: Shows all unique product names from the Product column.
    Formula: =UNIQUE(B2:B8)
    Output:
    Apple
    Banana
    Orange
    Grapes
  • Total Orders: Counts total number of orders.
    Formula: =COUNTA(A2:A8)
    Output: 7
  • Total Quantity Sold: Sums all quantities sold.
    Formula: =SUM(C2:C8)
    Output: 23
Dashboard Layout
+----------------------+------------------+
| Unique Products List  | Total Orders     |
| (UNIQUE formula)      | (COUNTA formula) |
+----------------------+------------------+
| Total Quantity Sold                      |
| (SUM formula)                          |
+---------------------------------------+
Interactivity

Adding a filter on the Product column will update the Unique Products List to show only unique products in the filtered data. Total Orders and Total Quantity Sold will also update to reflect filtered rows.

Self Check

If you add a filter to show only orders with Quantity > 3, which components update and what are their new values?

  • Unique Products List: Apple, Orange, Grapes
  • Total Orders: 3
  • Total Quantity Sold: 15
Key Result
Dashboard shows unique products sold, total orders, and total quantity from sales data.