Learn / CSV errors

Fix Shopify CSV invalid weight errors

Weight fields can fail when values contain units, text, or mismatched weight-unit combinations.

Why Shopify throws this error

Weight columns are parsed as numeric values with separate unit fields. Mixed-format input can break import normalization.

Common causes

CSV example that fails

Handle,Variant Grams
classic-tee,2 kg

Corrected CSV example

Handle,Variant Grams
classic-tee,2000

Manual fix steps

  1. 1. Convert weight to the expected numeric field format.
  2. 2. Keep units in dedicated unit fields only.
  3. 3. Normalize decimals to dot-separated format.
  4. 4. Spot-check shipping profiles after import.

RowReady-assisted fix path

  1. 1. Run validation and filter weight parsing issues.
  2. 2. Apply unit-safe numeric corrections.
  3. 3. Export clean file and recheck before upload.

Related Shopify CSV issues