Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • Conditional Formatting New Rule with Formulas in Excel
  • Managing Conditional Formatting Rules in Excel
  • How to Sort by Color in Excel
  • Get column name from index in Excel Table
  • How To Filter Data in Excel

References

  • Convert text string to valid reference in Excel using Indirect function
  • MATCH function: Description, Usage, Syntax, Examples and Explanation
  • How to use Excel MMULT Function
  • INDEX function: Description, Usage, Syntax, Examples and Explanation
  • How to get address of first cell in range in Excel

Data Validations

  • Excel Data validation allow uppercase only
  • Data validation must not exist in list
  • Excel Data validation allow weekday only
  • Excel Data validation must begin with
  • Excel Data validation must not contain

Tax rate calculation with fixed base in Excel

by

This tutorial shows how to work Tax rate calculation with fixed base in Excel using the example below;

Formula

=IF(A1<limit,A1*rate,(A1-limit)*rate+fixed)

Explanation

This example shows how to set up simple formula using the IF function to calculate a tax amount with both fixed and variable components. In the example shown, the formula in C5 is:

=IF(B5<limit,B5*rate,(B5-limit)*rate+fixed)

in a worksheet with the following named ranges: rate = F4, fixed = F5, limit = F6.

The rules of this problem are as follows:

  1. If amount is less than $1000, tax is amount * 20%.
  2. If amount is greater than or equal to $1000, tax is $200 + (amount over 1000) *20%

How this formula works

The core of this formula is a single IF statement that checks the amount in column B against the base limit:

=IF(B5<limit

If TRUE, the formula simply multiplies the amount in B5 by tax rate:

B5*rate

If FALSE, the formula applies the tax rate to the amount over 1000, then adds the fixed amount:

(B5-limit)*rate+fixed)

Post navigation

Previous Post:

COSH function: Description, Usage, Syntax, Examples and Explanation

Next Post:

Excel Data validation require unique number

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • OR function: Description, Usage, Syntax, Examples and Explanation
  • IF with boolean logic in Excel
  • Not Equal To ‘<>‘ operator in Excel
  • How to use IFS function in Excel
  • Check multiple cells are equal in Excel

Date Time

  • Calculate series of dates by workdays in Excel
  • How to get same date next month or previous month in Excel
  • Add workdays no weekends in Excel
  • Convert Excel time to Unix time in Excel
  • How to calculate months between dates in Excel

Grouping

  • Running count group by n size in Excel
  • Categorize text with keywords in Excel
  • Group times into unequal buckets in Excel
  • Group numbers with VLOOKUP in Excel
  • Map inputs to arbitrary values in Excel

General

  • How to get random value from list or table in Excel
  • Count cells that do not contain errors in Excel
  • Excel Autofill Cell Ranges, Copy, Paste
  • List worksheet index numbers in Excel
  • Sum by group in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning