# Promotional Lift (%)

**Description:** Percent increase in sales during promotion compared to baseline.

**Formula:** (Incremental Sales ÷ Baseline Sales) × 100&#x20;

**SQL Calculation:**

```sql
(SUM(promo_sales) - SUM(baseline_sales)) / NULLIF(SUM(baseline_sales),0) * 100 AS promo_lift
```

**Why It Matters:** Core measure of trade promotion effectiveness.

***

**Metric Type:** Diagnostic

**Essence:** Lagging

**Frequency:** Weekly / Promo Period

**Units:** Percentage (%)

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

**Questions Answered:**

* How effective was our promotion in driving incremental volume?
* Which promotion types generate the best lift?

**Potential Causes of Worsening:** Over-promotion fatigue, less effective promotional strategies

## **Related**

**Tactics to Improve:**

* Optimize promotion cadence
* Adjust discount depth
* Add feature/display

**Metrics:**

* Incremental Sales
* Baseline Sales
* % Depth of Discount
* Number of Weeks on Promotion

**Related Explores:**

* Retail Promotion Analysis Explorer

**Related Sources:**

* URMS.SALES\_REPORT
* Retail Promo Events BSD


---

# 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/promotion/promotional-lift.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.
