Question:

Can excel field show a specific value if another field has specific content? ?

by  |  earlier

0 LIKES UnLike

ex. If C2=Basic then E2 shows $30000?

 Tags:

   Report

3 ANSWERS


  1. Hi Needy,

    The formula you had tried is absolutely correct except a small correction. Since you are gonna use a text parameter in range B2 (ex: Level1, Level2 etc) you should code the parameter in if condition as string.

    =IF(B2="Level1", 30000,"") (i.e. Level1 in between double quotes)

    This will work!!!

    Cheers!

    Guru


  2. =IF(B2="Level1", 30000, "")

    Quotes surrounding a text string should be "double" quotes, not 'single' quotes.  Creating a list is a good idea, and the formula should work either way.

  3. in E2 just enter

    =IF(C2="Basic", 30000, "")

    this will show 30000 in E2 if C2 is "Basic", othewise it'll show a blank

Question Stats

Latest activity: earlier.
This question has 3 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.