Competition Law Merger Filing Threshold Calculator (Interactive Tool Guide for Foreign Companies in China)

Date:

Share post:

Competition Law Merger Filing Threshold Calculator (Interactive Tool Guide for Foreign Companies in China)

China’s Anti-Monopoly Law (AML) requires mandatory notification to the State Administration for Market Regulation (SAMR) for transactions that meet specific turnover thresholds. Determining whether a transaction triggers these filing obligations is the first and most critical step in any M&A deal involving Chinese operations. This tool guide provides a step-by-step methodology for calculating whether your transaction meets or exceeds China’s AML merger filing thresholds, along with practical implementation guidance, worked examples, and considerations specific to foreign multinational corporations.

How the Merger Filing Threshold Calculator Works

The calculator follows a four-step decision tree based on the current threshold regulations under China’s AML. The applicable thresholds are:

Step 1: Gather Financial Data

Collect the following turnover data for the most recent complete fiscal year (all figures in RMB or convertible at the average annual exchange rate):

  • Global turnover of all parties to the concentration (combined): Total worldwide revenue from ordinary business activities across the entire corporate group, including all entities under common control.
  • China turnover of all parties (combined): Revenue derived from customers located in mainland China (excluding Hong Kong, Macau, and Taiwan for this purpose, though separate filing regimes may apply in those jurisdictions).
  • Individual China turnover of at least two parties: Each party’s individual turnover in China must exceed the RMB 400 million minimum threshold.

Key data points to collect for each party:

  • Ultimate parent entity’s global audited revenue.
  • China-sourced revenue of the ultimate parent and all directly or indirectly controlled subsidiaries.
  • China-sourced revenue of the target company (for acquisitions).
  • China-sourced revenue of all joint venture partners (for JV formations).

Step 2: Check Global Threshold (Scenario A)

Threshold A1 — Global high threshold:

  • Combined global turnover of all parties > RMB 10 billion (approximately USD 1.4 billion), AND
  • At least two parties each have China turnover > RMB 400 million (USD 55 million).

If YES → Filing required. Proceed to Step 4.

If NO → Proceed to Step 3.

Step 3: Check Domestic Threshold (Scenario B)

Threshold B1 — China domestic threshold:

  • Combined China turnover of all parties > RMB 2 billion (USD 275 million), AND
  • At least two parties each have China turnover > RMB 400 million (USD 55 million).

If YES → Filing required. Proceed to Step 4.

If NO → No mandatory filing required (but voluntary filing may be recommended — see Section 6).

Step 4: Determine Safe Harbor / Exemption

Even when thresholds are crossed, certain transactions may qualify for simplified procedure or exemption:

  • Simplified procedure eligibility: If all parties’ market shares are below 15% in each horizontally affected market AND below 25% in each vertically affected market, the transaction qualifies for SAMR’s simplified merger review procedure (faster review, reduced documentation).
  • JV exemption: A joint venture that is not engaged in economic activities independently from its parents (i.e., it operates solely for the coordination of the parents’ competitive behavior) is not considered a “concentration” requiring filing — though this exemption is narrowly interpreted.
  • Acquisition of control by an existing shareholder: Certain internal restructurings within the same corporate group may be exempt.
  • Insolvency exception: Acquisition of businesses in bankruptcy proceedings may qualify for exemption.

Worked Examples

Example 1: German Automotive Supplier Acquires Chinese Parts Manufacturer

Party Global Turnover (RMB) China Turnover (RMB)
German Supplier (Acquirer) RMB 45 billion (€5.7 billion) RMB 3.2 billion
Chinese Target RMB 1.5 billion RMB 1.5 billion
Combined RMB 46.5 billion RMB 4.7 billion

Analysis:

  • Global threshold: Combined global turnover (RMB 46.5B) > RMB 10B ✓
  • Two parties each with China turnover > RMB 400M? German supplier (RMB 3.2B) ✓, Chinese target (RMB 1.5B) ✓
  • Result: Mandatory filing required.

Example 2: US Tech Company with Minimal China Revenue Acquires Chinese AI Startup

Party Global Turnover (RMB) China Turnover (RMB)
US Tech Co (Acquirer) RMB 180 billion ($25 billion) RMB 280 million
Chinese AI Startup (Target) RMB 120 million RMB 120 million
Combined RMB 180.12 billion RMB 400 million

Analysis:

  • Global threshold: Combined global (RMB 180.12B) > RMB 10B ✓
  • Two parties each with China turnover > RMB 400M? US Tech Co (RMB 280M) — BELOW threshold ✗
  • Domestic threshold: Combined China (RMB 400M) < RMB 2B ✗
  • Result: No mandatory filing required. However, SAMR retains the right to request notification if the transaction could affect competition. Given the target is a Chinese AI startup in a sensitive technology area, voluntary filing may be prudent.

Example 3: Two Foreign Companies Merging Abroad with Joint Venture in China

Party Global Turnover (RMB) China Turnover (RMB)
European Pharma A RMB 85 billion (€10.7 billion) RMB 5.1 billion
US Pharma B RMB 62 billion ($8.6 billion) RMB 3.8 billion
Combined RMB 147 billion RMB 8.9 billion

Analysis:

  • Global threshold: Combined global (RMB 147B) > RMB 10B ✓
  • Two parties each with China turnover > RMB 400M? Pharma A (RMB 5.1B) ✓, Pharma B (RMB 3.8B) ✓
  • Result: Mandatory filing required. This is a cross-border merger of two foreign companies with no single Chinese target, but both have substantial China operations through their JV. SAMR has jurisdiction and will review the transaction’s impact on the Chinese pharmaceutical market.

Implementing the Calculator

Excel/Spreadsheet Implementation

Foreign companies can implement this calculator as a simple spreadsheet with the following structure:

Cell Input/Formula Description
A1 Acquirer Global Turnover (RMB) User input
A2 Acquirer China Turnover (RMB) User input
A3 Target/JV Partner 1 Global Turnover (RMB) User input
A4 Target/JV Partner 1 China Turnover (RMB) User input
A5 =A1+A3 Combined Global Turnover
A6 =A2+A4 Combined China Turnover
A7 =AND(A5>10000000000, A2>400000000, A4>400000000) Global Threshold Triggered?
A8 =AND(A6>2000000000, A2>400000000, A4>400000000) Domestic Threshold Triggered?
A9 =OR(A7, A8) Filing Required?

Python Implementation

For companies that prefer an automated approach, here is a simplified Python implementation:

def check_filing_requirement(data):
    """
    Check if a transaction requires AML merger filing in China.
    
    data: dict with keys:
        - acquirer_global, acquirer_china
        - target_global, target_china (or jv_partner1, jv_partner2)
    """
    combined_global = data['acquirer_global'] + data['target_global']
    combined_china = data['acquirer_china'] + data['target_china']
    
    # Thresholds
    GLOBAL_THRESHOLD = 10_000_000_000  # RMB 10 billion
    DOMESTIC_THRESHOLD = 2_000_000_000  # RMB 2 billion
    MIN_INDIVIDUAL = 400_000_000  # RMB 400 million
    
    # Check global threshold
    global_triggered = (
        combined_global > GLOBAL_THRESHOLD and
        data['acquirer_china'] > MIN_INDIVIDUAL and
        data['target_china'] > MIN_INDIVIDUAL
    )
    
    # Check domestic threshold
    domestic_triggered = (
        combined_china > DOMESTIC_THRESHOLD and
        data['acquirer_china'] > MIN_INDIVIDUAL and
        data['target_china'] > MIN_INDIVIDUAL
    )
    
    return {
        'filing_required': global_triggered or domestic_triggered,
        'global_threshold_met': global_triggered,
        'domestic_threshold_met': domestic_triggered,
        'combined_global_turnover': combined_global,
        'combined_china_turnover': combined_china,
        'threshold_narrative': _generate_narrative(
            global_triggered, domestic_triggered, combined_global, combined_china
        )
    }

Voluntary Filing Considerations

Even when mandatory thresholds are not met, SAMR retains the authority under Article 26 of the AML to require notification if it determines that a concentration has or may have the effect of eliminating or restricting competition. Foreign companies should consider voluntary filing in the following circumstances:

  • The transaction involves a market with high concentration (HHI > 2500).
  • The transaction could create a dominant position (market share exceeding 30%).
  • The target is a startup with significant market potential but currently low turnover.
  • The transaction involves cross-market effects (e.g., conglomerate concerns).
  • The transaction is subject to public scrutiny or media attention in China.

Limitations and Disclaimer

This calculator provides a preliminary assessment only. China’s AML threshold calculation involves complex questions of corporate group attribution, revenue recognition, and market definition that may require professional legal analysis. Key limitations include:

  • Turnover calculation rules for financial institutions and insurance companies differ from general enterprises (separate regulatory thresholds apply).
  • Revenue attributable to intragroup transactions should be excluded.
  • The thresholds are adjusted periodically — always verify current thresholds with SAMR or qualified legal counsel.
  • Provincial-level MRB offices may have additional notification requirements.
  • This calculator does not address foreign investment review, national security review, or sector-specific regulatory approvals that may run parallel to AML merger review.

Conclusion

Using this merger filing threshold calculator, foreign companies can perform a preliminary assessment of whether their transaction triggers mandatory AML notification in China. However, given the complexity of Chinese competition law and the significant penalties for non-compliance — including fines of up to 10% of prior year’s China turnover and potential unwinding of the transaction — the results of this calculator should always be reviewed by experienced Chinese antitrust counsel before making any filing decision or proceeding with deal execution.

Official Sources

Related articles

Do Chinese Courts Recognize Foreign Governing Law in Contracts?

Do Chinese Courts Recognize Foreign Governing Law in Contracts? Yes, Chinese courts recognize foreign governing law in contracts, but only under 5 key

How do I register a security interest under PRC contract law?

How do I register a security interest under PRC contract law? How do I register a security interest under PRC contract law? Quick Answer To register a

What is the Statute of Limitations for Contract Claims in China?

What is the Statute of Limitations for Contract Claims in China? The statute of limitations (诉讼时效, sùsòng shíxiào) for contract claims in China is gen

How Do Liquidated Damages Work Under Chinese Contract Law?

How do liquidated damages work under Chinese contract law? How Do Liquidated Damages Work Under Chinese Contract Law? Quick Answer Under PRC law, liqu