Understanding Accumulated Other Comprehensive Income

4 min read

According to the Flossbach von Storch Research Institute, 328 of the S&P 500 companies in 2024 had a negative Other Comprehensive Income (OCI) of $4.5 billion. This is attributed to rising interest rates since 2022 had OCI figures of negative $325 billion. Understanding OCI and Accumulated Other Comprehensive Income (AOCI) is essential to see what this means and how it’s calculated.

AOCI is where unrealized gains or losses are listed as a special line item found under the Shareholder’s Equity section of a company’s balance sheet. As part of OCI, all unrealized transactions are excluded from net income on an income statement. OCI is the difference between net income and comprehensive income.

Illustrating How Financial Statements Work

If a business has multiple quarters of OCI, say $500,000 in Q1, $750,000 in Q2, and $1.25 million in Q3, the company’s balance sheet would have $2.5 million on its balance sheet under the AOCI line item in the Shareholder’s Equity section at the end of Q3.  

Investments that are classified as available for sale, not intended to be held until maturity, and are not a loan or a receivable may be recognized as OCI. One example is a bond portfolio that’s not held to maturity that’s seen an unrealized decrease or increase, and the available-for-sale asset can be included. Pension plans, for example, that see an increase in value, the difference, after recipient distributions are deducted, can similarly be recognized as OCI. Derivatives, classified as cash flow hedges, that experience unrealized gains and losses, also may qualify for OCI classification.

Important Considerations

If a transaction is completed and a gain or loss is realized, the reporting is moved from AOCI to the balance sheet’s Net Income section.

While it’s optional for privately held companies and nonprofits that don’t share it with external parties, the Financial Accounting Standards Board (FASB) generated a novel standard in 1997 mandating comprehensive accounting for all publicly traded companies in the United States. This is for all income, including other or special types of income, especially for losses/profits not yet realized.

Reporting AOCI accounts on the balance sheet is important because gains and losses impact the balance sheet overall and the business’ income statistics. It’s also important to note that net income and retained earnings on the income statement are not finalized until transactions are completed and moved to a different section of the balance sheet.

According to FASB’s Statement of Financial Accounting Standards No. 220, titled “Income Statement — Reporting Comprehensive Income,” the reporting business must document comprehensive income in one or a series of two continuous statements with both other comprehensive income and net income.

Conclusion

Understanding OCI and AOCI work is essential for business owners and external audiences, such as potential investors, when examining a business’ operations.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

"; return; } var url = block.dataset.restUrl + "?post_id=" + encodeURIComponent(block.dataset.postId) + "&keyword=" + encodeURIComponent(keyword); output.innerHTML = "
Searching…
"; submit.disabled = true; output.setAttribute("aria-busy", "true"); fetch(url, { headers: { "X-WP-Nonce": block.dataset.nonce } }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 200 && resp.data && resp.data.success) { dpSimilarRender(output, keyword, resp.data); } else if (resp.status === 403) { output.innerHTML = "
Session expired. Please refresh the page and try again.
"; } else if (resp.status === 429) { output.innerHTML = "
Too many searches. Please try again in a few minutes.
" + dpSimilarCta(output, -1); } else { output.innerHTML = "
Search failed. Please try again.
" + dpSimilarCta(output, -1); } }) .catch(function(){ output.innerHTML = "
Could not reach the server. Please check your connection.
" + dpSimilarCta(output, -1); }) .then(function(){ submit.disabled = false; output.removeAttribute("aria-busy"); }); } function dpAskGrokSend(block) { var input = block.querySelector(".dp-ask-grok-input"); var result = block.querySelector(".dp-ask-grok-result"); var send = block.querySelector(".dp-ask-grok-send"); var form = block.querySelector(".dp-ask-grok-form"); var button = block.querySelector(".dp-ask-grok-button"); var intro = block.querySelector(".dp-ask-grok-intro"); var question = (input.value || "").trim(); if (question.length Please ask a question of at least 10 characters."; return; } if (question.length > 500) { result.innerHTML = "
Question is too long. Please keep it under 500 characters.
"; return; } result.innerHTML = "
Asking Grok\u2026 (this can take 10-20 seconds)
"; send.disabled = true; result.setAttribute("aria-busy", "true"); fetch(block.dataset.restUrlAskGrok, { method: "POST", headers: { "Content-Type": "application/json", "X-WP-Nonce": block.dataset.nonce }, body: JSON.stringify({ post_id: parseInt(block.dataset.postId, 10), question: question }) }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 429) { if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } var rateMsg = (resp.data && resp.data.message) ? resp.data.message : "You\u2019ve reached today\u2019s question limit. Please try again tomorrow."; result.innerHTML = "
" + dpSimilarEscape(rateMsg) + "
"; return; } if (resp.status === 403) { result.innerHTML = "
Session expired. Please refresh the page and try again.
"; return; } if (resp.status === 200 && resp.data && resp.data.success) { var safeAnswer = dpSimilarEscape(resp.data.answer || ""); var safeDisclaimer = dpSimilarEscape(resp.data.disclaimer || ""); var answerHtml = "
"; answerHtml += "

" + safeAnswer + "

"; answerHtml += "

\u26a0\ufe0f " + safeDisclaimer + "

"; answerHtml += "
"; result.innerHTML = answerHtml; if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } return; } if (resp.status === 200 && resp.data && !resp.data.success) { var msg = dpSimilarEscape(resp.data.message || "Could not process your question right now."); result.innerHTML = "
" + msg + "
"; return; } result.innerHTML = "
Could not process your question right now. Please try again later.
"; }) .catch(function(){ result.innerHTML = "
Could not reach the server. Please check your connection and try again.
"; }) .then(function(){ if (send) send.disabled = false; result.removeAttribute("aria-busy"); }); } function dpSimilarRender(output, keyword, data) { var html = ""; if (data.count === 0) { html += "
No matches found for “" + dpSimilarEscape(keyword) + "”.
"; } else { html += "

Articles matching “" + dpSimilarEscape(keyword) + "”

"; html += "
    "; data.results.forEach(function(r){ html += "
  • "; html += "" + r.title + ""; html += "" + r.date + ""; html += "
  • "; }); html += "
"; } html += dpSimilarCta(output, data.count); output.innerHTML = html; } function dpSimilarCta(output, count) { var block = output.closest(".dp-similar-block"); var contactUrl = block ? block.dataset.contactUrl : ""; if (!contactUrl) { return ""; } var ctaText; if (count === -1) { ctaText = "While you wait, here are some other ways to get help:"; } else if (count === 0) { ctaText = "Couldn\u2019t find what you needed? Speak with a professional for personalized help."; } else { ctaText = "Need more help with this topic? Speak with a professional."; } var html = "
"; html += "

" + ctaText + "

"; html += "Talk to a Professional"; html += "
"; var isFullApi = block && block.dataset.isFullApi === "1"; html += "

Or ask our AI assistant a quick question about this topic.

"; html += ""; html += "
"; html += ""; html += ""; html += ""; html += ""; html += "
"; html += "
"; html += "
"; html += "
"; return html; } function dpSimilarEscape(s) { var div = document.createElement("div"); div.textContent = s; return div.innerHTML; }})();

Coronado-Fortune & Associates, LLC

Understanding Accumulated Other Comprehensive Income

September 1, 2026  ·  Accounting News, Blog, Uncategorized

4 min read

According to the Flossbach von Storch Research Institute, 328 of the S&P 500 companies in 2024 had a negative Other Comprehensive Income (OCI) of $4.5 billion. This is attributed to rising interest rates since 2022 had OCI figures of negative $325 billion. Understanding OCI and Accumulated Other Comprehensive Income (AOCI) is essential to see what this means and how it’s calculated.

AOCI is where unrealized gains or losses are listed as a special line item found under the Shareholder’s Equity section of a company’s balance sheet. As part of OCI, all unrealized transactions are excluded from net income on an income statement. OCI is the difference between net income and comprehensive income.

Illustrating How Financial Statements Work

If a business has multiple quarters of OCI, say $500,000 in Q1, $750,000 in Q2, and $1.25 million in Q3, the company’s balance sheet would have $2.5 million on its balance sheet under the AOCI line item in the Shareholder’s Equity section at the end of Q3.  

Investments that are classified as available for sale, not intended to be held until maturity, and are not a loan or a receivable may be recognized as OCI. One example is a bond portfolio that’s not held to maturity that’s seen an unrealized decrease or increase, and the available-for-sale asset can be included. Pension plans, for example, that see an increase in value, the difference, after recipient distributions are deducted, can similarly be recognized as OCI. Derivatives, classified as cash flow hedges, that experience unrealized gains and losses, also may qualify for OCI classification.

Important Considerations

If a transaction is completed and a gain or loss is realized, the reporting is moved from AOCI to the balance sheet’s Net Income section.

While it’s optional for privately held companies and nonprofits that don’t share it with external parties, the Financial Accounting Standards Board (FASB) generated a novel standard in 1997 mandating comprehensive accounting for all publicly traded companies in the United States. This is for all income, including other or special types of income, especially for losses/profits not yet realized.

Reporting AOCI accounts on the balance sheet is important because gains and losses impact the balance sheet overall and the business’ income statistics. It’s also important to note that net income and retained earnings on the income statement are not finalized until transactions are completed and moved to a different section of the balance sheet.

According to FASB’s Statement of Financial Accounting Standards No. 220, titled “Income Statement — Reporting Comprehensive Income,” the reporting business must document comprehensive income in one or a series of two continuous statements with both other comprehensive income and net income.

Conclusion

Understanding OCI and AOCI work is essential for business owners and external audiences, such as potential investors, when examining a business’ operations.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

Service2Client

Share
Published by
Service2Client

Recent Posts

New Trump Account Updates

Picture two couples, each with a baby born this year, each routing $2,500 of salary…

2 weeks ago

Understanding Inflation Accounting

According to the July 12, 2026, Consumer Price Index Release from the U.S. Bureau of…

2 weeks ago

Bond Investment Strategies

Bonds are designed to deliver both capital preservation and income, and are generally considered lower…

2 weeks ago

How to Keep Your Cash When You Make Good Money

You’re doing well, earning a good salary. But somewhere around the latter part of the…

2 weeks ago

Insurance for AI Risk: Is It Time to Consider AI Liability Coverage?

Over the past few years, artificial intelligence (AI) has evolved from a futuristic concept into…

2 weeks ago

Focused on Ending Insider Trading, the Penny, Epilepsy, the War in Iran, and Projects that Waste Taxpayer Money

strong>21st Century ROAD to Housing Act (HR 6644) – This bipartisan, White House-endorsed bill addresses…

2 weeks ago