Understanding Modified Accrual Accounting

4 min read

According to the Federal Register, there were about 90,000 local and state government entities throughout the country in 2022. This number is comprised of towns, counties, cities, special districts, and independent school districts. One of the commonalities these organizations share is their use of modified accrual accounting.

Understanding the Differences Between Cash and Accrual Accounting

Cash basis accounting recognizes transactions upon the exchange of cash. Expenses are not recognized until they are paid, and revenue isn’t recognized until payment has been received. Neither future obligations nor anticipated revenues are recorded in financial statements until the cash transaction has happened.

Accrual accounting treats the recognition of expenses when they are incurred. When it comes to recognizing revenue, it occurs once a business is owed compensation for its contracted complete delivery of products or services. The act of exchanging cash or payment is less important with accrual accounting.

What is Modified Accrual Accounting

This method of accounting merges the directness of cash accounting and some attributes of the more complex but equally useful accrual accounting method to account for transaction differences. One can record modified accrual accounting as each transaction is analyzed and accounted for, hinging primarily on whether an asset is short- or long-term, be it how a business recognizes revenue or incurs a liability.

Short Term Versus Long Term

This method is highly dependent on the type of asset in question. When the cash balance has been impacted by a short-term occurrence, such as a sale to a customer or the purchase of raw materials from a vendor, it must be recorded using the cash basis. This is most often recorded on the income statement.

When it comes to events that impact more than one accounting timeframe, it is referred to as long-term. If the debt that is due beyond 12 months or fixed assets are in question, these are considered long-term and must be documented on the balance sheet.

For assets such as fixed long-term debt and fixed assets, which are considered longer-term, they are recorded on the balance sheet. Such assets are then depreciated or amortized over an asset’s lifetime.

Where Modified Accrual is Used

While public companies may use this for financial statements internally, it is not permitted for public financial reporting by generally accepted accounting principles (GAAP) or the International Financial Reporting Standards (IFRS). One important consideration for private or public companies is that when the modified cash basis method is used, there is an implicit consideration that transactions recorded on a cash basis will have to be adjusted to an accrual-based accounting to be accepted by third-party auditors.

Since the financial statements submitted to be evaluated by a third-party auditor would not have been 100 percent on an accrual basis, they would fail a third-party audit, creating a crisis of confidence among outside observers. The transition from a cash basis will require less translation to a full accrual basis accounting. However, for non-publicly traded, private businesses, for internally-only used financial statements and/or no financing required, it can be useful.

One important reason this standard is widely used throughout government agencies is because the Government Accounting Standards Board (GASB) created the standard, and it is recognized as an established metric.

The reason governmental agencies implement this standard is because local and state governments keep their attention on present year fiscal responsibilities. This works with their dual principal purposes. The first is to document in any event if present-year monetary inflows are satisfactory to fund present-year costs. It also satisfies that each government entity can substantiate if government funds are utilized in accordance with the law.

Depending on the type of entity and how they are functioning in the economy, private or public sectors can look at how modified accrual accounting impacts their operations.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.

"; 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 Modified Accrual Accounting

June 1, 2023  ·  Accounting News, Blog, Uncategorized

4 min read

According to the Federal Register, there were about 90,000 local and state government entities throughout the country in 2022. This number is comprised of towns, counties, cities, special districts, and independent school districts. One of the commonalities these organizations share is their use of modified accrual accounting.

Understanding the Differences Between Cash and Accrual Accounting

Cash basis accounting recognizes transactions upon the exchange of cash. Expenses are not recognized until they are paid, and revenue isn’t recognized until payment has been received. Neither future obligations nor anticipated revenues are recorded in financial statements until the cash transaction has happened.

Accrual accounting treats the recognition of expenses when they are incurred. When it comes to recognizing revenue, it occurs once a business is owed compensation for its contracted complete delivery of products or services. The act of exchanging cash or payment is less important with accrual accounting.

What is Modified Accrual Accounting

This method of accounting merges the directness of cash accounting and some attributes of the more complex but equally useful accrual accounting method to account for transaction differences. One can record modified accrual accounting as each transaction is analyzed and accounted for, hinging primarily on whether an asset is short- or long-term, be it how a business recognizes revenue or incurs a liability.

Short Term Versus Long Term

This method is highly dependent on the type of asset in question. When the cash balance has been impacted by a short-term occurrence, such as a sale to a customer or the purchase of raw materials from a vendor, it must be recorded using the cash basis. This is most often recorded on the income statement.

When it comes to events that impact more than one accounting timeframe, it is referred to as long-term. If the debt that is due beyond 12 months or fixed assets are in question, these are considered long-term and must be documented on the balance sheet.

For assets such as fixed long-term debt and fixed assets, which are considered longer-term, they are recorded on the balance sheet. Such assets are then depreciated or amortized over an asset’s lifetime.

Where Modified Accrual is Used

While public companies may use this for financial statements internally, it is not permitted for public financial reporting by generally accepted accounting principles (GAAP) or the International Financial Reporting Standards (IFRS). One important consideration for private or public companies is that when the modified cash basis method is used, there is an implicit consideration that transactions recorded on a cash basis will have to be adjusted to an accrual-based accounting to be accepted by third-party auditors.

Since the financial statements submitted to be evaluated by a third-party auditor would not have been 100 percent on an accrual basis, they would fail a third-party audit, creating a crisis of confidence among outside observers. The transition from a cash basis will require less translation to a full accrual basis accounting. However, for non-publicly traded, private businesses, for internally-only used financial statements and/or no financing required, it can be useful.

One important reason this standard is widely used throughout government agencies is because the Government Accounting Standards Board (GASB) created the standard, and it is recognized as an established metric.

The reason governmental agencies implement this standard is because local and state governments keep their attention on present year fiscal responsibilities. This works with their dual principal purposes. The first is to document in any event if present-year monetary inflows are satisfactory to fund present-year costs. It also satisfies that each government entity can substantiate if government funds are utilized in accordance with the law.

Depending on the type of entity and how they are functioning in the economy, private or public sectors can look at how modified accrual accounting impacts their operations.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.

Service2Client

Share
Published by
Service2Client