# Average Price (ARP / ASP)

**Description:** Average selling price per unit in market or retail.

**Formula:** Dollar Sales ÷ Unit Sales

**SQL Calculation:**

```sql
SUM(sales_dollars) / NULLIF(SUM(units_sold),0) AS avg_price
```

**Why It Matters:** Indicates pricing trends, promotional effects, and market positioning.

**Metric Type:** Diagnostic

**Essence:** Lagging

**Frequency:** Weekly / Monthly

**Units:** Dollars ($/unit)

**Suggested Breakdowns:** Product, Channel, Retailer, Region

**Questions Answered:**

* How are prices trending over time?
* Are promotions lowering average price?

**Potential Causes of Worsening:** High promotion frequency, deeper discounts, retailer pricing pressure.

**Tactics to Improve:**

* Adjust promotional cadence
* Revisit price pack architecture
* Reinforce brand equity

**Related Metrics:**

* Dollar Sales
* Unit Sales
* Discount %

**Related Explores:**

* Pricing Trends
* Promo ROI Analysis

**Related Sources:**

* URS.SALES\_REPORT
* URMS.SALES\_REPORT


---

# 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/pricing/average-price-arp-asp.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.
