What Is the Current Ratio?
The current ratio is a liquidity metric that measures whether a company can cover its short-term obligations with its short-term assets. It divides current assets by current liabilities, both the things that convert to cash within a year and the things that come due within a year. A ratio above 1.0 means current assets exceed current liabilities, the basic sign of short-term financial health. It is one of the most widely used measures of liquidity, watched by lenders, investors, and finance teams.
How to Calculate the Current Ratio
Current Ratio = Current Assets / Current Liabilities
Worked example:
- Current assets: $4,000,000
- Current liabilities: $2,000,000
- Current ratio: 4,000,000 / 2,000,000 = 2.0
A current ratio of 2.0 means the company has $2.00 of current assets for every $1.00 of current liabilities.
The Current Ratio in Power BI (DAX)
The pattern depends on how the balance sheet is modeled. Replace the names with the ones in your model:
Current Assets = CALCULATE ( [Account Balance], Accounts[Class] = "Current Asset" )
Current Liabilities = CALCULATE ( [Account Balance], Accounts[Class] = "Current Liability" )
Current Ratio = DIVIDE ( [Current Assets], [Current Liabilities] )
DIVIDE returns a blank instead of an error when current liabilities are zero.
What Is a Good Current Ratio?
A current ratio between roughly 1.5 and 3.0 is often considered healthy, though the right level varies by industry. Below 1.0 means current liabilities exceed current assets, a possible liquidity concern. A very high ratio is not automatically good; it can mean cash or inventory sitting idle rather than being put to work. As always, the trend matters as much as the level.
Current Ratio vs Quick Ratio
The current ratio and the quick ratio both measure short-term liquidity; the difference is inventory. The current ratio counts all current assets, including inventory. The quick ratio excludes inventory to focus on the most liquid assets, giving a stricter view. For a business with a lot of inventory, the current ratio looks stronger than the quick ratio, and reading both together is more informative than either alone.
Reporting the Current Ratio Reliably
The current ratio is easy arithmetic; the difficulty is sourcing accurate, consistently classified balances. Current assets and liabilities have to be tagged the same way each period, and across multiple entities or systems the classification has to be consolidated correctly first. A governed data foundation applies that classification once so the ratio is consistent and ties back to the books. QuickLaunch ships pre-built models for JD Edwards, Vista, NetSuite, and OneStream that surface balance sheet figures directly from the ledger.
Frequently Asked Questions
How is the current ratio calculated?
Divide current assets by current liabilities. A company with $4M in current assets and $2M in current liabilities has a current ratio of 2.0.
What is a good current ratio?
Often between about 1.5 and 3.0, though it varies by industry. Below 1.0 can signal liquidity strain; a very high ratio can mean idle assets. The trend matters as much as the level.
What is the difference between the current ratio and the quick ratio?
Both measure short-term liquidity. The current ratio includes all current assets; the quick ratio excludes inventory to focus on the most liquid assets, giving a stricter, more conservative view.