Price Is Wrong in GA4 DebugView

Google Analytics BCS 3 years ago (2023-01-13) 4733 Views 0 Comments

Table of Contents

Updated: August 26, 2025

Issue

If you use DebugView to debug e-commerce tracking, you may notice that the price parameter is incorrect, the price you send is 3.15:

The DataLayer.push  is right:

dataLayer.push({
  event: "add_to_cart",
  ecommerce: {
    items: [
      {
        item_list_name: "Product details",
        item_list_id: "Product details",
        item_name: "CASEME 013 Series PU Leather Mobile Phone Shell with Wallet Stand for iPhone " +
                   "8/7/SE (2020)/SE (2022) 4.7 inch - Black",
        item_id: "101115653A",
        price: 3.15,
        quantity: 1
      }
    ]
  },
  gtm.uniqueEventId: 596
})

but it shows 3150000 in DebugView:

Picture Source:measure

 

Automatically multiplied by 100000.

Reason

This is GA4 to optimize storage and processing efficiency by converting floating numbers (such as prices) into integer storage.

 

Solution

Knowing the reason, you can ignore it.


If you don't understand, You can leave a comment below.
Like (4)
Post my comment
Cancel comment
Expression Bold Strikethrough Center Italic

Hi, you need to fill in your nickname and email!

  • Nickname (required)
  • Email (required)
  • Website