Ascend HQ Analytics Metrics (2024)

This article covers the metrics currently included on the Analytics page of Ascend HQ.

Note: All metrics measure finished (closed) transactions only and exclude tax. Sales with no sales items (e.g. gift card/gift certificate sales) are excluded from calculations.

Mini Metrics

Ascend HQ Analytics Metrics (1)

  • Sales= Sales Dollars
  • Profit= Sales minus Cost of Goods Sold
  • Margin= (Profit / Sales) * 100displayed as a percentage
  • Units Sold= Quantity of Items Sold

To verify these numbers in Ascend, do the following:

  1. InAscend HQ, select a single location
  2. Set theDate RangetoYear to Date
  3. InAscend, go toReportsand clickProd. Queryon the toolbar
  4. Set yourFromdate to the first day of the calendar year
  5. Click theTotals Onlybutton on the toolbar
  6. ClickExecuteto run the Query
  7. Unitsshould equalUnits Soldin Ascend HQ
  8. Gross Sale Priceshould equalSalesin Ascend HQ
  9. Profitshould equalProfitin Ascend HQ
  10. Margin (Sale)should equalMarginin Ascend HQ

Ascend HQ Analytics Metrics (2)

Mountain Metrics

Retail Profit Machine (RPM)

Note: Values are color-coded according to their score –greenindicates exceptional performance,orangeindicates adequate performance, andblueindicates performance which needs improvement. Click thetogglebutton (double square icon) to display the minimum target value for each score.

Ascend HQ Analytics Metrics (3)

Bikes – Av. Price: Total value (sales dollars, excluding tax) divided by total quantity of sales items which were finished (closed) in the selected date range and which are assigned to aBikescategory (i.e. top parent category containsBikesorBicycles).

Av. Add-on $: Total value (sales dollars, excluding tax) divided by total quantity of sales items which were finished (closed) in the selected date range and which are not assigned to aBikescategory (i.e. top parent category containsBikesorBicycles), which are not assigned to a serialized category, and which are not assigned to aLaborcategory (i.e. top parent category containsLabororLabour).

Av. Work Order: ForWork Order Detailswhich are completed and whose transaction was finished (closed) in the selected date range: total value (sales dollars, excluding tax) of sales items which were added to aWork Order Detailand which are not assigned to aBikescategory (i.e. top parent category containsBikesorBicycles), which are not assigned to a serialized category,which are not assigned to aRentalcategory (i.e. top parent category containsRental), and which are assigned to a category divided by the total number ofWork Order Details.

To verify this number, run the following query in Ascend. Be sure to enter the date range that equals what you're looking at in Ascend HQ.

--Average Work Order

WITH WorkOrderSales
AS
(SELECT
SUM(Si.Quantity * Si.Price) AS [WOSales]
FROM Sales S
JOIN SalesItems Si
ON S.ID = Si.SalesID
JOIN WorkOrderDetails WO
ON Si.WorkOrderDetailID = WO.ID
WHERE S.Hide = 0
AND Si.Hide = 0
AND WO.DateCompleted IS NOT NULL
AND Si.RentalReservationID IS NULL
AND Si.ProductID IN (SELECT
ID
FROM Products
WHERE TopicID IS NOT NULL
and topicid not in (select id from Categories where Serialized = 1 )
AND Si.SerialID IS NULL
AND S.FinishDate BETWEEN <<StartDate>> AND <<EndDate>>
)),
WOCount
AS
(SELECT
COUNT(DISTINCT Si.WorkOrderDetailID) AS [WOCount]
FROM Sales S
JOIN SalesItems Si
ON S.ID = Si.SalesID
JOIN WorkOrderDetails WO
ON Si.WorkOrderDetailID = WO.ID
WHERE S.Hide = 0
AND Si.Hide = 0
AND WO.DateCompleted IS NOT NULL
AND Si.RentalReservationID IS NULL
AND Si.SerialID IS NULL
AND S.FinishDate BETWEEN <<StartDate>> AND <<EndDate>>
),
Results
AS
(SELECT
WorkOrderSales.WOSales
,WOCount.WOCount
FROM WorkOrderSales
,WOCount)
SELECT
[Avg Work Order] =
CASE
WHEN R.WOSales = 0 THEN 0
WHEN R.WOCount = 0 THEN 0
ELSE R.WOSales / R.WOCount
END
FROM Results R

Sales/Hour: Total value (sales dollars, excluding tax) of transactions finished (closed) divided by total hours worked (as recorded in Ascend’s Time Clock) by all users.
Note: This number will differ slightly from Sales per hour in the sales team analysis because sales team analysis excludes the hours of technicians and employees who have not created a transaction during the day.

Email Capture: Percent of total transactions for the store with a customer associated who has an email address entered which were finished (closed) in the selected date range.

Av. DIS: The estimated number of days products have been in stock without selling. Total number of days in the selected date range divided by the number of turns (total inventory difference – beginning inventory value minus ending inventory value – divided by two).
Note:Av. DISis NOT an average of theRemaining DISmetric.Inventory values prior toApril 1, 2019are not tracked.

NPS:Net Promoter Scoreas calculated byListen360. Article: Get started with Listen360 integration

Average Transaction Size

This metric measures Sales Dollars divided by the Number of Transactions.
Note: Transactions that were finished (closed) but which did not include any sale items (e.g. cancelled layaways/work orders or gift card/certificate sales) are not included in this calculation.

Ascend HQ Analytics Metrics (4)

To verify this number, run the following query in Ascend.Be sure to enter the date range that equals what you're looking at in Ascend HQ.

-- Average Transaction SizeSELECT [ATS]= ISNULL(((SELECT CASE WHEN SUM(Si.Quantity * Si.Price)= 0 
THEN NULL
ELSE SUM(Si.Quantity * Si.Price)
END
FROM SalesItems Si
JOIN Sales S ON Si.SalesID=S.ID
WHERE S.Hide=0
AND Si.Hide=0
AND S.FinishDate BETWEEN <<StartDate>> AND <<EndDate>>)
/
(SELECT COUNT(DISTINCT si.SalesID)
FROM Sales S
JOIN SalesItems si ON si.SalesID = s.ID
WHERE S.Hide=0
AND si.hide = 0
AND S.FinishDate BETWEEN <<StartDate>> AND <<EndDate>>)),0)

Work Order Attachment Rate

This metric measures Total Work Order Add-on Dollars divided by Total Work Order Labor Dollars and is displayed as a percentage.

NOTE: Work Order Add-on Dollars = Non-Labor and Non-serialized products on a Work Order with at least 1 Labor SKU

Ascend HQ Analytics Metrics (5)

To verify this number, run the following query in Ascend.

Be sure to enter the date range that equals what you're looking at in Ascend HQ.

-- Work Order Attachment Rate
Select
Case When w2.LaborDollars = 0 Then 0 Else Round((Cast(w2.AddonDollars as Decimal(9,2))/Cast(w2.LaborDollars as Decimal(9,2))) * 100 , 2) End As AttachmentRate
From (
Select
Sum(w.AddonDollars) as AddonDollars,
Sum(w.LaborDollars) as LaborDollars
From (
Select
Sum(Case When labCat.ID Is Not Null Then 0 Else si.Quantity * Round(si.Price, 4) End) As AddonDollars,
s.ID,
s.LaborDollars
From (
Select
s.ID,
Sum(si.Quantity * Round(si.Price, 4)) As LaborDollars
From Sales s
Join SalesItems si On si.SalesID = s.ID
Join Products p On p.ID = si.ProductID
Join Categories c On c.Id = p.TopicID
Join (
Select c.Id
From Categories c
Where Lower(c.Topic) Like('lab%')
And c.Hide <> 1 And c.ParentID Is Null) labCat
On labCat.Id = c.TopParentID Or labCat.Id = c.ID
Where s.Hide <> 1
And si.Hide <> 1
And s.WorkOrder <> 0
And s.FinishDate BETWEEN <<StartDate>> AND <<EndDate>>
Group By s.ID) s
Join SalesItems si On si.SalesID = s.Id
Join Products p On p.ID = si.ProductID
Left Join Categories c On c.ID = p.TopicID
Left Join (
Select c.Id
From Categories c
Where Lower(c.Topic) Like('lab%')
And c.Hide <> 1 And c.ParentID Is Null) labCat
On labCat.Id = c.TopParentID Or labCat.Id = c.ID
Where si.Hide <> 1
And (c.ID Is Null Or c.Serialized <> 1)
Group By s.ID, s.LaborDollars) w) w2

Target Categories

A Target Category is a key category of the business. Right now, the two Target Categories that we measure are Labor and Bikes. Soon, retailers will be able to define their own Target Categories. The following metrics will be displayed for each designated Target Category.

% of Total Sales

This metric measures the Total Sales Dollars in a Target Category divided by Total Sales from all categories and is displayed as a percentage.

To verify these numbers in Ascend, do the following:

  1. Run the Activity Summary
  2. Divide the Target Category Sales by Total Sales
  3. Example for calculating this metric can be found in the image below. In this case, theBikes -- % of Total Saleswould be62.95%.

Ascend HQ Analytics Metrics (6)

Average Price

This metric measures the Total Sales Dollars in a Target Category divided by the Units Sold the same Target Category.

Ascend HQ Analytics Metrics (7)

To verifyAverage Pricein Ascend, do the following:

  1. InAscend HQ, select a single location
  2. Set theDate RangetoYear to Date
  3. InAscend, go toReportsand clickProd. Queryon the toolbar
  4. Set yourFromdate to the first day of the calendar year
  5. Select the Target Category you're measuring. In this example, we'll chooseBikes.
  6. Click theTotals Onlybutton on the toolbar
  7. ClickExecuteto run the Query
  8. DivideGross Sale PricebyUnits

Ascend HQ Analytics Metrics (8)

Add-on Dollars

This metric measures Total Sales Dollars (excluding Target Category, Serialized, and Labor Item ) divided by the Number of Sales containing a Target Item.

IMPORTANT: Ascend Analytics did not exclude other Target categories from the Add-ons calculation. So if two bikes were present on a transaction, for example, the other bike would be included as an Add-on. We corrected this in Ascend HQ. This means the value in Ascend Analytics will likely be higher than it is in Ascend HQ.

Ascend HQ Analytics Metrics (9)

Run this query to verify your Add-on Dollars for your target category in your database.

WITH CategoryIds (CategoryId)
AS (
-- Anchor member definition
SELECT
c.Id AS CategoryId
FROM Categories c
WHERE c.Hide <> 1
AND Lower(c.Topic) Like(Lower(<<Category>>))
UNION ALL
-- Recursive member definition
SELECT
c.Id AS CategoryId
FROM Categories c
JOIN CategoryIds ci ON ci.CategoryId = c.ParentId
WHERE c.Hide <> 1
)

SELECT
IsNull(Sum(si.Quantity * Round(si.Price, 2)), 0) / (
Select
ISNULL(SUM(si.Quantity), 1) AS TargetsSold
From Sales s
Join SalesItems si On si.SalesID = s.ID
Join Products p On p.ID = si.ProductID
Join CategoryIds c ON c.CategoryId = p.TopicID
Where s.Hide <> 1
And si.Hide <> 1
And s.FinishDate BETWEEN <<StartDate>> AND <<EndDate>>) AS AverageAddOnDollars
FROM (
Select Distinct
s.Id
From Sales s
Join SalesItems si On si.SalesID = s.ID
Join Products p On p.ID = si.ProductID
Join CategoryIds c ON c.CategoryId = p.TopicID
Where s.Hide <> 1
And si.Hide <> 1
And s.FinishDate BETWEEN <<StartDate>> AND <<EndDate>>) s
Join SalesItems si On si.SalesID = s.Id
Join Products p On p.ID = si.ProductID
Left Join Categories c On c.Id = p.TopicID
Left Join (
Select c.Id
From Categories c
Where Lower(c.Topic) Like('lab%')
And c.Hide <> 1 And c.ParentID Is Null) labCat
On labCat.Id = c.TopParentID Or labCat.Id = c.ID
Left Join CategoryIds cc On cc.CategoryId = p.TopicID
Where labCat.ID Is Null
And (c.ID IS null Or c.Serialized <> 1)
And cc.CategoryId Is Null
And si.Hide <> 1

KB22-214

Ascend HQ Analytics Metrics (2024)

References

Top Articles
Latest Posts
Article information

Author: Sen. Ignacio Ratke

Last Updated:

Views: 6073

Rating: 4.6 / 5 (76 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Sen. Ignacio Ratke

Birthday: 1999-05-27

Address: Apt. 171 8116 Bailey Via, Roberthaven, GA 58289

Phone: +2585395768220

Job: Lead Liaison

Hobby: Lockpicking, LARPing, Lego building, Lapidary, Macrame, Book restoration, Bodybuilding

Introduction: My name is Sen. Ignacio Ratke, I am a adventurous, zealous, outstanding, agreeable, precious, excited, gifted person who loves writing and wants to share my knowledge and understanding with you.