{"slug":"what-h1-and-h2-mean-in-reporting","qid":"issuer_calendars","label":"Where nine familiar issuers close their reported periods","post_title":"What H1 and H2 Mean in Company Reporting","post_url":"/blog/what-h1-and-h2-mean-in-reporting#q-issuer_calendars","columns":["ticker","periods_close_in","distinct_months","closes_on_file","latest_close"],"rows":[{"ticker":"AAPL","periods_close_in":"Mar, Jun, Jul, Sep, Dec","distinct_months":5,"closes_on_file":11,"latest_close":"2025-12-27"},{"ticker":"COST","periods_close_in":"Feb, May, Aug, Sep, Nov","distinct_months":5,"closes_on_file":12,"latest_close":"2026-05-10"},{"ticker":"HD","periods_close_in":"Jan, Feb, Apr, May, Jul, Aug, Oct, Nov","distinct_months":8,"closes_on_file":11,"latest_close":"2026-05-03"},{"ticker":"JNJ","periods_close_in":"Mar, Jun, Jul, Sep, Oct, Dec","distinct_months":6,"closes_on_file":11,"latest_close":"2025-12-28"},{"ticker":"KO","periods_close_in":"Mar, Jun, Sep, Dec","distinct_months":4,"closes_on_file":10,"latest_close":"2025-12-31"},{"ticker":"MSFT","periods_close_in":"Mar, Jun, Sep, Dec","distinct_months":4,"closes_on_file":10,"latest_close":"2025-12-31"},{"ticker":"NVDA","periods_close_in":"Jan, Apr, Jul, Oct","distinct_months":4,"closes_on_file":12,"latest_close":"2026-04-26"},{"ticker":"ORCL","periods_close_in":"Feb, May, Aug, Nov","distinct_months":4,"closes_on_file":12,"latest_close":"2026-05-31"},{"ticker":"WMT","periods_close_in":"Jan, Apr, Jul, Oct","distinct_months":4,"closes_on_file":10,"latest_close":"2025-10-31"}],"shape":"table","sql":"SELECT\n    ticker,\n    arrayStringConcat(\n        arrayMap(m -> ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'][m],\n                 arraySort(groupUniqArray(toMonth(period_end)))),\n        ', ')                      AS periods_close_in,\n    uniqExact(toMonth(period_end)) AS distinct_months,\n    uniqExact(period_end)          AS closes_on_file,\n    toString(max(period_end))      AS latest_close\nFROM\n(\n    SELECT\n        arrayJoin(tickers) AS ticker,\n        period_end\n    FROM global_markets.stocks_income_statements\n    WHERE period_end >= toDate('2023-07-01')\n      AND period_end <  toDate('2026-07-01')\n)\nWHERE ticker IN ('AAPL', 'COST', 'HD', 'JNJ', 'KO', 'MSFT', 'NVDA', 'ORCL', 'WMT')\nGROUP BY ticker\nORDER BY ticker","computed_at":"2026-08-06T15:34:04.850359+00:00","elapsed":0.036084303}