Quick Ratio vs Current Ratio: Which One Is Lying?
Your current ratio is 2.1. Your quick ratio is 0.8. That gap, 1.3 points, is inventory. At a mid-size manufacturer, that could be €4.2M of stock your balance sheet calls a current asset. Your bank calls it collateral. Your cash flow calls it nothing, because it hasn’t moved in months.
The quick ratio is the current ratio without the inventory lie. It strips out everything you can’t quickly convert to cash and asks a simpler question: if you couldn’t sell a single item from your warehouse today, could you still pay your bills?
This page covers the formula, industry benchmarks, the gap between current and quick ratio that reveals where liquidity risk actually hides, and a Qlik expression you can drop into a finance dashboard today.
What Is the Quick Ratio?
The quick ratio, sometimes called the acid test ratio, measures a company’s ability to pay its short-term obligations using only its most liquid assets, cash, marketable securities, and accounts receivable.
It is the current ratio with inventory and prepaid expenses removed.
The current ratio tells you the size of the cushion. This page tells you what the cushion is made of. The quick ratio tells you how much of the cushion is actually liquid.
For any company that carries meaningful inventory, the quick ratio is the more honest of the two numbers. For a services company with no inventory, the two ratios are nearly identical, and the distinction is academic.
Quick Ratio Formula
There are two common versions. Both are correct. They arrive at the same result from different starting points.
Version 1 (from current assets):
Quick Ratio = (Current Assets - Inventory - Prepaid Expenses) / Current Liabilities
Version 2 (explicit components):
Quick Ratio = (Cash + Marketable Securities + Accounts Receivable) / Current Liabilities
Version 1 is easier to calculate from a standard balance sheet. Version 2 is more precise if your prepaid expenses are large or if there are other non-liquid current assets (certain deferred costs, for example) that should also be excluded.
The denominator is the same as the current ratio: all obligations due within 12 months, including accounts payable, short-term debt, accrued expenses, and the current portion of long-term debt.
A quick ratio above 1.0 means quick assets cover current obligations. Below 1.0 means they don’t, and the company depends on either selling inventory, securing credit, or collecting receivables faster than obligations come due.
What Is a Good Quick Ratio? Industry Benchmarks
The commonly cited threshold is 1.0, above it is safe, below it is a warning. That is too blunt to be useful. Industry structure, revenue timing, and business model all determine what a healthy quick ratio looks like.
| Industry | Strong | Acceptable | Watch Zone | Red Flag |
|---|---|---|---|---|
| Manufacturing | > 1.2 | 0.8 – 1.2 | 0.5 – 0.8 | < 0.5 |
| Retail | > 0.7 | 0.4 – 0.7 | 0.2 – 0.4 | < 0.2 |
| SaaS / Software | > 2.0 | 1.2 – 2.0 | 0.8 – 1.2 | < 0.8 |
| Healthcare | > 1.5 | 1.0 – 1.5 | 0.7 – 1.0 | < 0.7 |
| Construction | > 1.2 | 0.8 – 1.2 | 0.5 – 0.8 | < 0.5 |
| Professional Services | > 1.8 | 1.2 – 1.8 | 0.8 – 1.2 | < 0.8 |
Retail operates at lower quick ratios by design. Card payments and fast-moving inventory mean the business can sustain a quick ratio well below 1.0 as long as inventory actually turns. Professional services and SaaS companies carry little or no inventory, so their quick ratio is almost identical to their current ratio, and the benchmark is higher because there is no inventory buffer to draw on.
Manufacturing is the sector where the gap between current ratio and quick ratio matters most. A manufacturer sitting at current ratio 2.2 and quick ratio 0.7 has a hidden liquidity problem. The current ratio says everything is fine. The quick ratio says the business cannot pay its obligations without selling inventory first.
Quick Ratio vs Current Ratio: The Gap That Reveals the Hidden Money
This comparison is the entire reason this post exists.
The current ratio and quick ratio will diverge whenever inventory is a significant share of current assets. That divergence is not just a technical accounting difference. It is a direct measurement of how much of your reported liquidity is locked in goods you haven’t sold yet.
Here is the calculation that makes it concrete:
Quick Ratio Gap = Current Ratio – Quick Ratio. Multiply that gap by current liabilities to get the inventory value propping up your current ratio. That number is cash your balance sheet is treating as liquid, but your cash flow cannot touch.
A manufacturer with €10M in current liabilities and a gap of 1.3 has €13M of inventory sitting between its current ratio and a credible liquidity picture. If that inventory doesn’t move, none of it matters when the next payment run hits.
The gap also tells you something about inventory quality. A large gap is not automatically a problem. Fast-turning inventory, such as a distributor with 30-day turns, is genuinely close to liquid. Slow-moving inventory, such as custom manufactured parts with no confirmed buyer, is not. The quick ratio treats all inventory equally by excluding it. Your ERP knows the difference, and the aging report is where the hidden money hides.
Where Does the Money Hide in a Quick Ratio?
Three patterns show up consistently in companies where the quick ratio is telling a better story than the underlying position deserves.
Inventory That Should Have Been Written Down
The current ratio carries inventory at book value until it is formally written down. Obsolete stock, slow-moving SKUs, and superseded product lines sit in the numerator at cost, inflating both the current ratio and, by subtraction, making the quick ratio appear to be accurately stripping out a genuine asset when it’s actually stripping out a liability waiting to happen.
The check: pull inventory aging by SKU. Any stock with zero movement in 90+ days should be considered non-liquid for management purposes, regardless of what the balance sheet says. The difference between book value and realistic net realisable value is the hidden number.
At a manufacturer with €6M in inventory on the balance sheet and €2M of that untouched for 6+ months, the quick ratio is technically correct but the current ratio is overstated by almost a third.
Receivables That Won’t Convert
The quick ratio keeps accounts receivable in the numerator. That is appropriate for receivables likely to collect. It is problematic for receivables sitting past 90 days with no collection activity.
A company with €3M in receivables past 90 days included in quick assets has a quick ratio that overstates actual liquidity by exactly the proportion that aging receivables represent. If those invoices don’t collect, they disappear from the numerator and the actual liquidity position is worse than the ratio suggested.
The receivables quality question connects directly to how quickly the business actually converts sales to cash. Days Sales Outstanding is the metric that shows how much of your quick ratio is sitting in unpaid invoices right now, and whether those invoices are moving or stagnating.
Prepaid Bloat
Prepaid expenses are excluded from the quick ratio formula. But their impact on the current ratio can be significant for companies that have recently signed large enterprise software contracts, restructured insurance programs, or prepaid rent. A current ratio boosted by €800K in prepaid software licenses that will convert to services, not cash, is overstated by exactly that amount.
The quick ratio catches this correctly by excluding prepaids. If your current ratio looks strong but your quick ratio is materially lower, and you have a large prepaid balance, that gap is not inventory risk. It is cash that was spent and will not return.
How to Track Quick Ratio in Qlik
The expression excludes inventory and prepaid expenses from current assets using set analysis on account subtype. Adjust AccountType, AccountSubType, and Balance to match your chart of accounts field names.
// Quick Ratio
Num(
Sum({<AccountType={'Current Asset'}, AccountSubType -= {'Inventory', 'Prepaid'}>} Balance)
/
If(
Sum({<AccountType={'Current Liability'}>} Balance) = 0,
Null(),
Sum({<AccountType={'Current Liability'}>} Balance)
),
'#,##0.00'
)
The most useful way to display this is alongside the current ratio in a single KPI tile, with both values visible and a third calculated measure showing the gap:
// Quick Ratio Gap (Current Ratio minus Quick Ratio)
Num(
Sum({<AccountType={'Current Asset'}>} Balance)
/
Sum({<AccountType={'Current Liability'}>} Balance)
-
Sum({<AccountType={'Current Asset'}, AccountSubType -= {'Inventory', 'Prepaid'}>} Balance)
/
If(
Sum({<AccountType={'Current Liability'}>} Balance) = 0,
Null(),
Sum({<AccountType={'Current Liability'}>} Balance)
),
'#,##0.00'
)
When the gap expression shows 0.8 or above, that is the signal to open the inventory aging report. The number alone doesn’t tell you there’s a problem. The trend tells you.
Data model note: These expressions require an AccountSubType field that classifies accounts as Inventory or Prepaid within current assets. If your chart of accounts doesn’t have this level of classification, build a mapping table in the load script that assigns each account code to both its type and subtype. One mapping table at load time keeps all downstream expressions clean as the chart of accounts evolves.
What Genuinely Moves the Quick Ratio?
The same distinction applies here as with any balance sheet metric: genuine improvement versus cosmetic window dressing. Finance teams that understand the difference stop celebrating ratio improvements that don’t reflect real change.
Genuine improvements:
- Collecting outstanding receivables faster. Cash replaces a receivable in the numerator at the same value, so the ratio holds. But the asset quality improves and actual cash position improves. The receivables component of the quick ratio is only valuable if those invoices collect.
- Reducing current liabilities through strategic payables management. Longer supplier payment terms reduce the denominator. This is real improvement as long as the terms are sustainable and not straining supplier relationships.
- Deploying excess cash into the business efficiently. A quick ratio of 3.5 at a manufacturing company often means cash sitting idle rather than deployed. The optimal quick ratio is not the highest possible number.
Cosmetic changes that don’t reflect real improvement:
- Delaying accounts payable past period-end. Holding payments until the day after the balance sheet date reduces current liabilities at the measurement point. The obligations are still there.
- Drawing down a credit facility to build cash before period-end. This increases cash (improving the quick ratio numerator) while also increasing current liabilities (adding the credit facility balance to the denominator). The net effect on the ratio depends on which side moves more, but the underlying liquidity position hasn’t changed.
Credit analysts and banks are familiar with period-end ratio management. A quick ratio that spikes at quarter-end and drops immediately after is a pattern that triggers closer scrutiny, not reassurance.
The working capital dynamics behind genuine quick ratio improvement, how receivable collection velocity, inventory turns, and payables timing interact, are exactly what the cash conversion cycle measures. Quick ratio tells you the stock. CCC tells you the flow.
What to Read Next
If your quick ratio and current ratio are diverging and you want to understand the inventory side of that gap, the companion metric is the current ratio. The current ratio page covers what makes the broader liquidity picture mislead and where the asset quality problems actually hide.
If your quick ratio is healthy but receivables are the largest component, DSO tells you how solid that receivables number actually is. A rising DSO inside a stable quick ratio is the pattern to catch early.
If you want to see how quick ratio fits into a working finance dashboard alongside the metrics that drive actual cash decisions, the finance dashboard guide covers the full setup and how to display the current/quick gap as a single telling number.