How to calculate percentage in Excel - formula examples

In this tutorial, you will lean a quick way to calculate percentages in Excel, find the basic percentage formula and a few more formulas for calculating percentage increase, percent of total and more.

Calculating percentage is useful in many areas of life, whether it is restaurant tipping, reseller commission, your income tax or interest rate. Say, you've been lucky enough to get a 25% off promotion code on a new plasma TV. Is this a good deal? And how much will you eventually have to pay?

In this tutorial, we are going to explore a few techniques that will help you efficiently calculate percent in Excel and learn the basic percentage formulas that will take the guesswork out of your calculations.

Percentage basics

The term "per cent" is derived from the Latin per centum, meaning "by the hundred". As you probably remember from high school math class, a percentage is a fraction of 100 that is calculated by dividing the numerator by the denominator and multiplying the result by 100.

The basic percentage formula is as follows:

(Part/Whole)*100 = Percentage

For example, if you had 20 apples and you gave 5 to your friends, how much did you give, percentage wise? By performing a simple calculation =5/20*100 you get the answer - 25%.

This is how you normally calculate percentages in school and everyday life. Computing percentage in Microsoft Excel is even easier since Excel performs some operations for you automatically, in the background.

Regrettably, there is no universal Excel formula for percentage that would cover all possible scenarios. If you ask someone "Which percent formula do I use to get the result I want?", most likely, you will get an answer like "Well, that depends on what exactly result you want to achieve."

So, let me show you a few simple formulas for calculating a percent in Excel such as a percentage increase formula, a formula to get percentages of a total and more.

Basic Excel percentage formula

The basic formula to calculate percentage in Excel is this:

Part/Total = Percentage

If you compare it to the basic math formula for percentage, you will notice that Excel's percentage formula lacks the *100 part. When calculating a percent in Excel, you do not have to multiply the resulting fraction by 100 since Excel does this automatically when the Percentage format is applied to a cell.

And now, let's see how you can use the Excel percentage formula on real-life data. Suppose, you have the number of "Ordered items" in column B and "Delivered items" in column C. To find out the percentage of delivered products, perform the following steps:

  • Enter the formula =C2/B2 in cell D2, and copy it down to as many rows as you need.
  • Click the Percent Style button (Home tab > Number group) to display the resulting decimal fractions as percentages.
  • Remember to increase the number of decimal places if needed, as explained in Percentage tips.
  • Done! : )

The same sequence of steps shall be performed when using any other percentage formula in Excel.

In the following example, column D displays a rounded percent of delivered items, without any decimal places showing. Using the basic Excel percentage formula

Calculating percentage of total in Excel

In fact, the above example is a particular case of calculating percentages of a total. Now, let's investigate a few more examples that will help you make quick work of calculating a percent of a total in Excel on different data sets.

Example 1. The total is at the end of the table in a certain cell

A very common scenario is when you have a total in a single cell at the end of a table. In this case, the percentage formula will be similar to the one we've just discussed with the only difference that a cell reference in the denominator is an absolute reference (with $).The dollar sign fixes the reference to a given cell, so that it never changes no matter where the formula is copied.

For example, if you have some values in column B and their total in cell B10, you'd use the following formula to calculate percentages of the total:

=B2/$B$10

You use a relative cell reference to cell B2 because you want it to get changed when you copy the formula to other cells of column B. But you enter $B$10 as an absolute cell reference because you want to leave the denominator fixed on B10 when auto-filling the formula down to row 9.

Tip. To make the denominator an absolute reference, either type the dollar sign ($) manually or click the cell reference in the formula bar and press F4.

The screenshot below demonstrates the results returned by the formula, the Percentages of Total column is formatted as percentage with 2 decimal places showing. Calculating percentage of a total in Excel

Example 2. Parts of the total are in multiple rows

In the above example, suppose you have several rows for the same product and you want to know what part of the total is made by all orders of that particular product.

In this case, you can use the SUMIF function to add up all numbers relating to a given product first, and then divide that number by the total, like this:

=SUMIF(range, criteria, sum_range) / total

Given that column A contains all product names, column B lists corresponding quantities, cell E1 is the name of the product you are interested in, and the total is in cell B10, your real-life formula may look similar to this:

=SUMIF(A2:A9 ,E1, B2:B9) / $B$10 A formula to calculate a percentage of the total when items are in multiple rows

Naturally, you can put the product name directly in the formula, like this:

=SUMIF(A2:A9, "cherries", B2:B9) / $B$10

If you want to find out what part of the total a few different products make, add up the results returned by several SUMIF functions, and then divide that number by the total. For example, the following formula calculates the percent of cherries and apples:

=(SUMIF(A2:A9, "cherries", B2:B9) + SUMIF(A2:A9, "apples", B2:B9)) / $B$10

For more information about the SUM function, please check out the following tutorials:

How to calculate percent difference in Excel

Of all formulas for calculating percentage in Excel, a percent change formula is probably the one you would use most often.

Excel formula for percent increase / decrease

To calculate the percentage of difference between two values A and B, the generic formula is:

Percent Change = (B - A) / A

When applying this formula to real data, it is important that you correctly determine which value is A and which is B. For example, yesterday you had 80 apples and how you have 100, meaning that now you have 20 apples more than before, which is 25% increase. If you had 100 apples and now you have 80, your number of apples has reduced by 20, which is 20% decrease.

Considering the above, our Excel formula for percentage change takes the following shape:

(New Value - Old Value) / Old Value

And now, let's see how you can use this formula for calculating percent difference in your spreadsheets.

Example 1. Calculating percent difference between 2 columns

Suppose you have the last month prices in column B and this month prices in column C. Then your percent change formula takes this form:

=(C2-B2)/B2

To calculate the percent difference between two numbers correctly, carry out these steps.

  1. Enter the formula in any blank cell in row 2, say D2. This will output the result as a decimal number.
  2. Select the formula cell and click the Percent Style button on the Home tab to convert the decimal number to percentage.
  3. Drag the formula down to copy it to the below cells.

As the result, the formula calculates the percentage of change in this month (column C) comparted to last month (column B). Positive percentages that show percentage increase are formatted in usual black, while negative percentages (percent decrease) are formatted in red. To have this done automatically, set up a custom format for negative percentages as explained in this tip. Excel formula to calculate percent change between 2 columns

Example 2. Calculating percentage difference between two numbers

In case you have one column of numbers, say column C that lists weekly or monthly sales, you can calculate the percentage change between the previous week/month and the current one using this formula:

=(C3-C2)/C2

Where C2 and C3 are the numbers you are comparing.

Note. Please pay attention that you should skip the first row with data and put your percent difference formula in the 2nd cell, which is D3 in this example.

To display decimals as percentages, apply the percent format to the cells containing your formula, and you will get the following result: Excel formula to calculate percent change between rows

To calculate the percentage of change between a certain number and all other numbers, fix the address of that cell by using the $ sign, e.g. $C$2.

For instance, to calculates the percent increase / decrease for each month compared to January (C2), the formula in D3 is:

=(C3-$C$2)/$C$2

When copying the formula to the below cells, the absolute reference ($C$2) will remain the same, while the relative reference (C3) will change to C4, C5, and so on based on a relative position of the row where the formula is copied. Calculating a percentage change compared to January

For more formula examples, please see How to calculate percentage change in Excel.

Calculating amount and total by percentage

As you've just seen, calculating percentages in Excel is easy, and so is calculating amounts and totals if you know the percentage.

Example 1. Calculate amount by total and percentage

Suppose you are buying a new laptop for $950 and they charge 11% VAT on this purchase. The question is - how much do you have to pay on top of the net price? In other words, what is 11% of $950?

The following formula will help:

Total * Percentage = Amount

Assuming that the total value is in cell A2 and percent in B2, the above formula turns into a simple =A2*B2 and returns 104.50. Calculating amount by total and percentage

Remember, when you type a number followed by the percent sign (%) in Excel, the number is interpreted as a hundredth of its value. For example, 11% is actually stored as 0.11 and Excel uses this underlying value in all formulas and calculations.

In other words, the formula =A2*11% is equivalent to =A2*0.11. Naturally, you are free to use the decimal number corresponding to the percentage directly in a formula if this works better for your worksheets.

Example 2. Calculating total by amount and percentage

For example, you friend offered you his old computer for $400, which is 30% off the original price. You want to know what the original price was.

Since 30% is the discount, you deduct it from 100% first to know what percentage you actually have to pay (100% - 30% = 70%). Now you need the formula to calculate the original price, i.e. to find the number whose 70% equals 400.

The formula goes as follows:

Amount / Percentage = Total

Applied to real data, it may take any of the following shapes:

=A2/B2

or

=A2/0.7

or

=A2/70% Calculating the total by amount and percentage

Tip. To get an answer to a more difficult question - how to calculate the interest amount of a loan payment knowing an interest rate - check out the IPMT function.

How to increase / decrease a number by percentage

The holiday season is upon us and this indicates a change in your usual weekly spendings. You may want to consider different options to find out your optimum weekly allowance.

To increase an amount by a percentage, use this formula:

= Amount * (1 + %)

For example, to increase the value in cell A1 by 20%, the formula is:

=A1*(1+20%)

To decrease an amount by a percentage:

= Amount * (1 - %)

For instance, to reduce the value in cell A1 by 20%, the formula is:

=A1*(1-20%)

In our example, if A2 is your current expenditures and B2 is the percentage you want to increase or reduce that amount by, here are the formulas you'd enter in cell C2:

Increase by percentage:

=A2*(1+B2)

Reduce by percentage:

=A2*(1-B2) Excel formula to increase a number by percentage

How to increase / reduce an entire column by a percentage

Suppose, you have a column of numbers that you want to increase or reduce by a certain percent, and you want to have the updated numbers in the same column rather than add a new column with the formula.

Here are 5 quick steps to handle this task:

  1. Enter all the numbers you want to increase or decrease in some column, column B in this example.
  2. In an empty cell, enter one of the below formulas:

    Increase by percentage:

    =1+20%

    Reduce by percentage:

    =1-20% A formula to increase an entire column of numbers by a certain percentage

    Naturally, you are free to replace 20% in the above formulas with the percentage you want.

  3. Select the cell with the formula (C2 in our case) and copy it by pressing Ctrl + C.
  4. Select the range of cells you want to change, right click the selection and then click Paste Special… Use Paste Special to increase an entire column of numbers by percentage
  5. In the Paste Special dialog window, select Values under Paste, Multiply under Operation and click OK. In the Paste Special dialog window, select Values under Paste, Multiply under Operation.

And here's the result - all the numbers in column B are increased by 20%: All the numbers in column B are increased by 20%.

In the same fashion, you can multiply or divide a column of numbers by a certain percentage. Simply enter the desired percentage in an empty cell and follow the steps above.

This is how you calculate percentage in Excel. And even if working with percentages has never been your favorite kind of math, by using these basic percentage formulas you can get Excel to do the work for you. That's all for today, thank you for reading!

713 comments

  1. I have a task that has 15 steps to complete and this task is completed on multiple pieces of equipment. Several steps can be conducted at the same time on each piece of equipment. I want to calculate the percentage of completion for each piece of equipment. Each step is assigned a percentage based on time to complete. I want to record this in as simple way as possible. I want to assign the required percentage for each step to a field/column and then record it using 0 for 0%, 0.5 for 50% and 1 for 100% and then have the percentage complete show as a percentage in the end field/column. So if field/column C is assigned 6%, D is assigned 14%, E is assigned 4% and I enter 0.5 in C, 1 in D and 0 in E in the end field/column overall complete percentage I would get 17%. Can you please help with a formula for this?

      • Thank you, Alexander. I'm grateful for your help and will be recommending your site to all at work.

  2. How to use the formula under this circumtance:

    If i have 100 bags which utilizes a vehicle 25% and further i add 300 more bags then how much the vehicle utilizes?

    Note: Here all three components (100 bags, vehicle utilization and new addition bags) are variable it changes with every row.

    Can you publish a formulae for this type of data? it will be very helpful.

    Peace!

  3. I need the percentage of spaces cleaned vs not clean by date. For example if on Jan 27 Door 1 was clean and Door 2 was cleaned that space was 100% cleaned.
    If Door 1 was cleaned and Door 2 was not cleaned that space was only 50% cleaned.

    Thanks.

    • Hi,
      Sorry, I do not fully understand the task. You have not explained how the date relates to your question. If the execution of work is denoted as 0 or 1, then the formula can be

      =(A1+B1)/COUNT(A1,B1)

  4. I want to calculate price increase after 2 months given amount and percentage please how do I do it

    • Hi,
      The information you provided is not enough to understand your case and give you any advice, sorry.
      Please provide me with an example of the source data and the expected result.

  5. how how to compute the shortages of my cashier
    60% and 40% in my supervisor.thanks for answering

  6. i WANT TO CALCULATE THE VALUE OF LET SUPPOSE a= 499 AND B=220 AND WANT TO CALCULATE MULTIPLE OF BOTH VALUES WITH 14%. PLEASE SUGGEST THE VALUE. HOPE IT MAKE SENSE.

  7. how to divide percentage into two person for eg if A gets 50 % of total sales B should automatically get the 40% of total sales

  8. How toh calculated percentage this value 44.835 to 61.044 value .how many percentage value add toh this value 44.835 than value is 61.044

  9. Hi! how do I calculate , total manpower skill-61 persons & unskill -75 person.
    need my manpower 70% skill & 30% unskill.

  10. Hello, so I am attempting to calculate a percentage of completed task. The completed task are marked by a "1" in a specific column there are 3 column for each row. i know that what the percentage would be if only one or two task were completed ( 1 task completed = 33%, 2 completed =66%, all 3 task = 100%). A little more information; this spreadsheet is used for QC to ensure 3 task are completed for an organization. The organizations are listed vertically in the spreadsheet and three columns to the right headers are named after the task, each task once completed are marked with a one in the corresponding column/row for the organization. any help will be appreciated.

    • Hello!
      Percentage on each line can be calculated

      =SUM(B1:D1)/3

      But I'm not sure if this is what you want. Рlease describe your task in more detail.

  11. Hi! how do I calculate14% of R74.20 using excel formula please

  12. Hi, there can anyone help me? how can I calculate Multiple merge percentage?

  13. Hi there I need to get a percentage between 2 totals that equate to 100% example..
    I need to sell 50% retail 50 % services. I would like to be able to have both totals show like this month it was 65% retail and 35% services. How do I do this formula?

  14. Hi I need to calculate a KPI measure on deliveries made.
    5 deliveries made 1 of those was late. KPI fail anything below 98% however it comes up 80% pass which is a fail.
    Surely this is not correct as they might as well say 100% delivery.
    I thought it should be around 98% what am I doing wrong.
    Thank you

    • Hello!
      I’m sorry but your task is not entirely clear to me. For me to be able to help you better, please describe your task in more detail. Please specify what you were trying to find, what formula you used and what problem or error occurred. Give an example of the source data and the expected result.
      It’ll help me understand it better and find a solution for you.

  15. I really love your commitment to providing me with this information.

    I just wanted to point out that you have a typo and I am not trying to be critical. But I hope these comments are taken with the best of intentions.

    Regards

  16. Hi, I was given a large table that contains several divisions of an organization: Division 1, Division 2, Division 3, and so up to Division 9. Each division has a certain number of tasks complete and some others not complete. The column only indicates "complete"; "not complete".
    I am asked to indicate the percentage of the complete tasks and not complete tasks per division. The original table had all the division data together, so I ordered the divisions from 1 to 9, then created a table for each division, then ordered from A-z. Now I have all the complete tasks first and below the not complete. But now, per each division, I had hundreds of rows. So I count from row 2 (row 1 is headings) to the last row (e.g.578), and then from row 2 to the last "complete" (e.g. 98) and I know I have 97 complete tasks. Then to calculate the not complete I take from row 99 to 578 and know that not complete counts for 479. Then I calculate the percentage dividing number of complete and not complete for the total. But it takes forever and a day more. There should be a way to make this easier, but I cannot figure it out. I will be happy to email the table in case my explanation is not clear. Thanks!

    • Hello!
      Unfortunately, without seeing your data it is impossible to give you advice.

      I'm sorry, it is not very clear what result you want to get. Could you please describe your task in more detail and send us a small sample workbook with the source data and expected result to support@ablebits.com? Please shorten your tables to 10-20 rows/columns and include the link to your blog comment.

      We'll look into your task and try to help.

  17. Quite helpful. Many thanks.

  18. Hi!

    What formula can I use to find the time percentage with the given below?

    Computing for Submission Time. Target is between 00:05:00 to 00:15:00, actual time is 00:07:48.

    Is it possible to convert 00:07:48 to a percent of the target?

    Thanks!

    • from first look i would sugest dividing minutes and seconds in different columns. it will complicate formula a bit

  19. Hi all,

    I am trying to work out a weekly percentage average for colleagues.
    The total is worked out from any combination of days from Sunday through to Saturday.
    The problem I have is that colleagues can work one day or five days. How do I get the formula to understand that?

  20. Hello, I need to figure out the formula to create in a excel report calculating the percentage of Manual jobs vs Schedule jobs and then the differences "change" in that percent each month

    example Sept = 105 jobs 63 manual and 42 schedule for Sept - manual = 60% Schedule 40% - put that formula in my excel and then figure out OCT 107 jobs 60 manual and 47 schedule - manual =56% -schedule =44% - now the difference between Sept and Oct - how do I plug that into my excel

    Thanks you

    • Hello!
      If I understand your task correctly, when your data is written in range A1: C2, then the change in percentage points can be calculated in D2 using the formula

      =A1/C1-A2/C2

      Set the percentage format to D2.
      I hope it’ll be helpful.

  21. Good afternoon,

    I need the correct formula for the scenario below:

    In a call center setting: Sara receives 100 calls, accepts 87, missed or declines the other 13. I need the formula to calculate the percentage of calls accepted.

  22. 445.....
    =445*10/100

    44.500

  23. I want calculate as below please give me formula on my email

    100 total value less 25% =75 than less 5
    5 from 75 and than total of both %

    please give me formula

  24. Hi
    I have a column of revenue ($251) and the next column is the percentage of profit made 80%, so what is the formula to get the profit amount in the next column? Which would be 80% of $251?

  25. Hi. My paste special does not have the option of 'operation'. So, i cannot do the formula - How to increase / reduce an entire column by a percentage

  26. thanks

  27. How can I find the yearly %change of data population of people through out the year?so can you give me some idea.

  28. how to calculate the formula for
    mrp rate 80 + 10% on mrp = total

    • Hello!
      I’m sorry but your task is not entirely clear to me. Could you please describe it in more detail? What result do you want to get? Thank you!

  29. I have been trying to properly sum-up the percentage of each item to equal 100. However, the total is always not equal to 100%, either 99.9% or 100.01% is the closest. Is there any other way to round-off percentage that resulted in 100% in total. Enclosed example. Thank you.

    Species Planted Area Planted (%)
    A. mangium 67,340.0 80.4%
    A. crassicarpa 890.0 1.1%
    E. pellita 12,020.0 14.4%
    E. degluta 2,894.0 3.5%
    Others 617.0 0.7%
    Total 83,761.0 100.1%

    • hello!
      The cause of your problem is rounding numbers. In the Excel settings, the "Set precision as displayed" parameter is set. Your interest is automatically rounded to one decimal place. If you increase the accuracy of the calculations to two decimal places, the problem will disappear. Or in the last line of the calculation (0.7%) calculate the percentage as the difference between 100% and all previous values (100-80.4-1.1-14.4-3.5 = 0.6%)

  30. I would like to know the Amount of 30% = Rs. 120

  31. hi how to increase the value of a cell by adding some percentage
    ex: F16+25%

  32. Given an appraisal score in E5 and the current salary in F5, how do I calculate the new salary which could be either a)an increase by 10%,if the appraisal score is at least 75,or b)an increase by 5% if this score is greater than 60.Else,the if statement must return the text,No INCREASE.

    • Hello Archie!
      If I got you right, the formula below will help you with your task:

      =IF(E5>75,F5*1.1,IF(E5>60,F5*1.05,F5))

      I hope this will help

  33. I want to get 100% based on in total
    example
    3
    37
    total 40
    =(3/40)*100% = 8%
    =(37/40)*100% = 93%
    total 101%
    So it showing more than 100%. In this case, how i should do, please guide me
    Thank you

  34. How do you calculate the percentage difference in (2) prices? I have vendor A offering this material for $1000 and vendor B is offering the same material for $800.

    • Hello Michael!
      To calculate how many percent price B (800) is less than price A (1000), divide the difference between prices by price A. Multiply by 100%
      (1000-800)/1000 * 100%

  35. Hello Dharmendra!
    If I understand your task correctly, the following formula should work for you:

    =(((A1-201)*10)+101*7+51*5)*(A1 > 201)+ ((A1-100)*7+51*5)*(A1 > 100)*(A1 <= 201)+ ((A1-49)*5)*(A1 =50)

    I hope this will help, otherwise please do not hesitate to contact me anytime.

  36. Incentive (₹) Calls Target
    Not Applicable >50
    5₹ 50 to 100
    7₹ 101 to 201
    10₹ over 202
    A agent is taking 300 call in a month.How much will be total money?
    How to calculate incentive by formula.

  37. I need to find out the % of personnel per group and then overall organizational percentage completed required 40-hours continued educational training.
    I have Divisions (4 each) and under each Division is Departments (see below)
    San Diego / N1 / completed CEUs / percentage completed
    San Diego / N3 / completed CEUs / percentage completed
    San Diego / N5 / completed CEUs / percentage completed
    San Diego / N7 / completed CEUs / percentage completed
    San Diego / N9 / completed CEUs / percentage completed

    I have the total completed units per employee and his/her % completed
    "What I need to know is N1 combined is what % completed for the year, and the same for N1, N5, N7 & N9
    can someone assist?

  38. please i want the to formula calculating 12.5% of basic salary as salary tax.
    and 10% of basic salary as rent allowance on Excell. let us say basic salary is as fellow s
    1year-5000
    2year-2000
    3year-1000

    • Hello Eugine!
      If I understand your task correctly, the following formula should work for you:

      =IF(A1=1,5000*(0.125+0.1),IF(A1>=3,1000*(0.125+0.1),2000*(0.125+0.1)))

  39. Hello! I understand your discussion great! Super helpful. Is there a way i can make my numbers automatically round up in the same answer column? For example, i am finding 15% of 242 to = the number of records i need to pull for a review. However the answer is 36.3. Is there a way to make any answer automatically round up to the next whole number? Thanks for your help:)

    • Hello Samantha!
      If I understand your task correctly, the following formula
      =ROUNDUP(A1*0.15,0)
      If there is anything else I can help you with, please let me know.

  40. How do you distribute say an amount to different cost centres using percentage?

  41. 21-18 what is difference in percentage formula in excel

  42. Don't ask what others have done for you, but ask what you have done for others

  43. How to find the answer in excel sheet below sum
    10×870-48%

  44. Holy Cow: People are getting lazy or what. Almost all the queries that are submitted can be figured out by simply reading what you wrote. Just that simple. If your in Business and can not do Basic Math, you're in the Wrong Business, because this basically is taught in grade 6 math, yes, grade 6.

  45. Hi,
    =SUM(C5)+(C5*10%) + 20% = display total value
    (44.50 + 11.12)+(11.12)= 67.24
    i want to add 20% on total of (C5)+(C5*10%) and direct display final total H5 i.e. 67.24
    Thank you.

  46. Hi,
    please help me out from this
    i am having two times one is incoming time second one is outgoing time
    from these i need to pull out >24 and <24 data and there percentage also please healp me

  47. Hi, i am using excel 2007, i am having trouble dragging down the cursor. It is not calculating or updating automatically when I drag down ( which I already put the formula on the first row/column) what i am trying to do is instead of typing manually on each and every column, I want a quick percentage calculation. I've already ticked on automatic on calculation but the formulanis still not working. The formula for series and format cell is working but not the percentage one. Someone please help.

  48. Hi,
    Can anyone help me in solving this:
    The baseline for one of the indicators is 100 while the target is 20. One quarterly basis the progress is Q1 80, Q2 75 and Q3 2o, it means the target is achieved in Q3. Now how can I find the Target achieved in Numbers and the Target achieved in Percentage?
    Thanks

  49. Hi,
    I need to work out what percentage of people achieved a certain result range. For example, how many of a percentage achieved 99-99.90 and next group 98-98.95.
    Thank you.

  50. Isn't the first example of apples wrong?
    If I have 20 apples for 5 friends, then each should receive 20% and not 25%.
    I think that formula is not suitable for this example.

    • Hi Hermes,

      Our example is different from yours, please read carefully :)

      Suppose, you have 20 apples and you gave 5 to your friends (not to 5 friends, you just give 5 apples to someone). How much did you give, percentage wise? The answer is 25% (i.e. 5 is 25% of 20).

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)