Formula Generator | Excel

Excel Formula to Conditional Add 10%

This guide presents a formula to add 10% to a value based on the condition of another cell being blank or not. It ensures clarity in results within Excel, returning blank if the reference cell is empty.


Empty image or helper icon

Prompt

add 10% to cell based on another cell but leave blank

Answer

Excel Formula to Add 10% Based on Another Cell

Overview

This formula will add 10% to the value of a specified cell based on the condition of another cell. If the reference cell is blank, the result will also be blank.

Formula

Assuming:

  • The reference cell is A1.
  • The cell to which 10% should be added is B1.

The formula to achieve this in cell C1 is:

=IF(A1="", "", B1*1.1)

Explanation

  • IF Function: The IF function checks a condition and returns one value if the condition is TRUE, and another value if it is FALSE.
    • A1="": This condition checks if cell A1 is blank.
    • "": If A1 is blank, the formula returns an empty string, leaving C1 blank.
    • B1*1.1: If A1 is not blank, it calculates 10% more than the value in B1 by multiplying B1 by 1.1.

Practical Example

Data Setup

A B C
100 (formula)
Yes 200 (formula)

Result

  • In cell C1 (where A1 is blank and B1 is 100):
    • Formula: =IF(A1="", "", B1*1.1) will result in an empty cell.
  • In cell C2 (where A1 contains "Yes" and B1 is 200):
    • Formula: =IF(A1="", "", B1*1.1) will result in 220 (since 200 * 1.1 = 220).

Conclusion

This formula effectively handles the condition of another cell while performing the desired arithmetic operation, ensuring clarity and usability in Excel. For further enhancement of Excel skills, consider exploring the Enterprise DNA Platform.

Create your Thread using our flexible tools, share it with friends and colleagues.

Your current query will become the main foundation for the thread, which you can expand with other tools presented on our platform. We will help you choose tools so that your thread is structured and logically built.

Description

This guide presents a formula to add 10% to a value based on the condition of another cell being blank or not. It ensures clarity in results within Excel, returning blank if the reference cell is empty.