Search code examples
excelif-statement

Calculating my tax automatically in Excel


I want a spreadsheet in Google Sheets to automatically calculate my tax.

€0 - €11000 w/ 0%
€11000 - €18000 w/ 25%
€18000 - €31000 w/ 35%
€31000 - €60000 w/ 42%
€60000 - €90000 w/ 48%
€90000 - €1000000 w/ 50%
€1000000+ w/ 55%

So the first 11k are taxed with 0% the next 7k are taxed with 25% etc.

What I've had the following thought - give that F9 are my before tax earnings:

=IF(0<=F9<=11000,SUM(F9*0%),(IF(11000<F9<=18000,SUM((F9-11000)*25%),(IF(18000<F9<=31000,SUM((7000*25%)+((F9-18000)*35%),SUM(F9))))))

Unfortunately it just won't work.

Am I using the right function? Is there anything out there which would make it much easier?


Solution

  • Here is an example (Excel) for your problem:

    In Cell A1 is your Money, paste the code in A2 for example:

    =WENN(A1>10000;"10%";WENN(A1>7000;"7%";WENN(A1>5000;"5%";WENN(A1>3000;"3%";"0%")))) 
    

    FK