> For the complete documentation index, see [llms.txt](https://help.daasity.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.daasity.com/core-concepts/metrics/retail-and-wholesale-metrics/wholesale-promotion/forward-buy.md).

# Forward-Buy %

**Description:** Share of wholesale shipments during promo that did not sell through at retail, suggesting retailer pipeline loading.

**Formula:** *(Promo Shipments – Promo Sell-through) ÷ Promo Shipments × 100*

**SQL Calculation:**

```sql
(SUM(promo_units_shipped) - SUM(promo_units_sold)) / NULLIF(SUM(promo_units_shipped),0) * 100 AS forward_buy_pct
```

**Why It Matters:** Indicates retailer stockpiling during promos, which can distort incremental sales and depress future orders.

**Metric Type:** Diagnostic

**Essence:** Lagging

**Frequency:** Per Promotion Event

**Units:** Percentage (%)

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

**Questions Answered:**

* Did retailers overbuy during the promo?
* Will this forward-buy hurt post-promo shipments?

**Potential Causes of Worsening:** Aggressive trade discounts, retailer gaming, poor inventory planning.

**Tactics to Improve:**

* Shift to scan-down allowances
* Cap order quantities
* Align promos with consumption not pipeline load

**Related Metrics:**

* Sell-through %
* Incremental Sales
* Post-Promo Baseline Lift

**Related Explores:**

* Wholesale vs Retail Alignment

**Related Sources:**

* URS.WHOLESALE\_REPORT + URS.SALES\_REPORT


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://help.daasity.com/core-concepts/metrics/retail-and-wholesale-metrics/wholesale-promotion/forward-buy.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
