0
0
Google Sheetsspreadsheet~8 mins

EDATE and EOMONTH in Google Sheets - Dashboard Guide

Choose your learning style9 modes available
Dashboard Mode - EDATE and EOMONTH
Goal

Find the due dates and month-end dates for invoices based on their invoice dates and payment terms.

Sample Data
Invoice IDInvoice DatePayment Terms (Months)
INV0012024-01-151
INV0022024-02-203
INV0032024-03-056
INV0042024-04-100
INV0052024-05-252
Dashboard Components
  • KPI Table: Shows Invoice ID, Invoice Date, Payment Terms, Due Date, and Month-End Due Date.
  • Formulas:
    • Due Date = =EDATE(B2, C2) (Adds payment terms months to invoice date)
    • Month-End Due Date = =EOMONTH(B2, C2) (Finds last day of due month)
Invoice IDInvoice DatePayment Terms (Months)Due Date (EDATE)Month-End Due Date (EOMONTH)
INV0012024-01-151=EDATE(B2,C2) -> 2024-02-15=EOMONTH(B2,C2) -> 2024-02-29
INV0022024-02-203=EDATE(B3,C3) -> 2024-05-20=EOMONTH(B3,C3) -> 2024-05-31
INV0032024-03-056=EDATE(B4,C4) -> 2024-09-05=EOMONTH(B4,C4) -> 2024-09-30
INV0042024-04-100=EDATE(B5,C5) -> 2024-04-10=EOMONTH(B5,C5) -> 2024-04-30
INV0052024-05-252=EDATE(B6,C6) -> 2024-07-25=EOMONTH(B6,C6) -> 2024-07-31
Dashboard Layout
+-------------------------------------------------+
|                 Invoice Due Dates                |
+-------------------------------------------------+
| Invoice Table with:                              |
| - Invoice ID                                    |
| - Invoice Date                                  |
| - Payment Terms (Months)                        |
| - Due Date (EDATE)                             |
| - Month-End Due Date (EOMONTH)                 |
+-------------------------------------------------+
Interactivity

Add a filter to select invoices by Payment Terms (Months). When you choose a specific number of months, the table updates to show only invoices with that payment term. This helps focus on invoices due in certain time frames.

Self Check

If you add a filter for Payment Terms = 1, which invoices appear and what are their Due Dates and Month-End Due Dates?

Answer: Only INV001 appears with Due Date 2024-02-15 and Month-End Due Date 2024-02-29.

Key Result
Dashboard shows invoice due dates and month-end due dates using EDATE and EOMONTH formulas.