Result
How the Conversion Works
A percentage is a number expressed "per hundred." To convert it to a decimal, you divide by 100, which moves the decimal point two places to the left. This gives you a multiplier you can use directly in formulas without any further adjustment.
The decimal form is the format used internally by spreadsheets, calculators, programming languages, and financial models. When you type "18%" in a cell formatted as percentage in Excel, the underlying value stored is 0.18. This calculator makes the conversion explicit so you can use the decimal wherever needed.
Formula and Worked Examples
Equivalently: move the decimal point two places to the left.
18% ÷ 100 = 0.18
GST amount on ₹5,000 = 5,000 × 0.18 = ₹900
GST-inclusive price = 5,000 × 1.18 = ₹5,900
Example 2: SIP return of 12% per year, monthly rate
Annual rate: 12% ÷ 100 = 0.12
Monthly rate: 0.12 ÷ 12 = 0.01 (1% per month)
Example 3: TDS deduction at 10%
10% ÷ 100 = 0.10
TDS on ₹50,000 payment = 50,000 × 0.10 = ₹5,000 withheld
Using Decimals in Spreadsheets and Code
The decimal form is required whenever you use a percentage in a formula. Here are the most common contexts in Indian financial calculations:
| Calculation | Formula (Excel / Google Sheets) | Decimal Used |
|---|---|---|
| GST on price | =Price * 0.18 | 18% → 0.18 |
| GST-inclusive total | =Price * 1.18 | 18% → add 1 |
| Discount applied | =Price * (1 - 0.20) | 20% off → 0.20 |
| Monthly EMI interest rate | =AnnualRate / 100 / 12 | 12% p.a. → 0.01/month |
| TDS deduction | =GrossPayment * 0.10 | 10% TDS → 0.10 |
| ESIC contribution (employer) | =BasicSalary * 0.0325 | 3.25% → 0.0325 |
GST Rate Decimal Reference
India's GST system uses four main rates. Here is the decimal equivalent for each, along with the inclusive multiplier and reverse-GST divisor:
| GST Rate | Tax Decimal | Inclusive Multiplier | Reverse GST Divisor |
|---|---|---|---|
| 5% | 0.05 | 1.05 | ÷ 1.05 |
| 12% | 0.12 | 1.12 | ÷ 1.12 |
| 18% | 0.18 | 1.18 | ÷ 1.18 |
| 28% | 0.28 | 1.28 | ÷ 1.28 |
Frequently Asked Questions
Divide by 100 or move the decimal point two places to the left. 45% → 0.45. 7.5% → 0.075.
Percentage formatting in Excel/Sheets is a display option only. Internally, 18% is stored as 0.18. Formulas like =A1*18% work because 18% is interpreted as 0.18. Using the decimal directly avoids ambiguity.
0.18. To calculate 18% GST on ₹5,000: 5,000 × 0.18 = ₹900. For the GST-inclusive price: 5,000 × 1.18 = ₹5,900.
0.075. This rate applies to 7.5% GST on certain goods, and also appears in ESIC employer contribution (3.25%) and employee contribution (0.75%) calculations.
Code uses decimal multipliers directly: discounted = price * (1 - 0.15) for a 15% discount. CSS uses decimals too: opacity: 0.75 means 75% opacity. Convert your percentage before writing it into any formula or style property.
1.0. Multiplying by 1.0 leaves any value unchanged. 100% of an amount is the full amount.
0.005. Small percentages like repo rates (6.5% = 0.065), monthly interest rates, and penalty charges require careful decimal conversion to avoid calculation errors.
Divide by (1 + GST decimal). For 18% GST: pre-GST price = inclusive price ÷ 1.18. For a total bill of ₹11,800 at 18% GST: 11,800 ÷ 1.18 = ₹10,000 pre-GST, ₹1,800 GST.