# Base Dollars

**Description:** The portion of sales dollars expected in absence of promotions (baseline revenue).

**Formula:**

* **Option A (Direct Source Available):** `SUM(base_dollars)`
* **Option B (Not Available):** *Rolling Average of Non-Promo Dollar Sales* (e.g., last 4–8 weeks)

**SQL Calculation (Option A):**

```sql
SUM(base_dollars) AS base_dollars
```

**SQL Calculation (Option B):**

```sql
AVG(sales_dollars) OVER (PARTITION BY product_id, retailer_id
                         ORDER BY week ROWS BETWEEN 4 PRECEDING AND CURRENT ROW)
   AS base_dollars_rolling_avg
```

**Why It Matters:** Provides the "normal" sales benchmark to measure promo lift and incrementality.

**Metric Type:** Diagnostic

**Essence:** Lagging

**Frequency:** Weekly

**Units:** Dollars ($)

**Suggested Breakdowns:** Product, Retailer, Market

**Related Explores:**

* POS Baseline vs Promo Lift

**Related Sources:**

* URS.SALES\_REPORT (baseline if provided)
* URMS (baseline modeling)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.daasity.com/core-concepts/metrics/retail-and-wholesale-metrics/sales-volume/base-dollars.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
