UMAKEMESIK
Active Member
- Joined
- Oct 3, 2005
- Messages
- 378
Hello to all,
I am new to the if statement and vlookup world and have been using
A very simple if statement with great results
Yes, simple but I like what it does and look to expand.
I have a wb with a number of sheets.
I want to place an if /vlookup statement in the
First worksheet called – worksheet in cell i17
I want to search sheet4 called Protective.
Search column B from B7:b41 for the phrase Setup-Preassembly.
If the phrase is found then return the value from sheet 4 in column c of the same row
To Worksheet cell i17 – if the phrase is not found return to i17 a value of nothing, or blank (“”)
I tried to write something that I knew would not work but I had to start somewhere.
Please forgive the crudeness of my first attempt.
Any help would be much appreciated.
I am new to the if statement and vlookup world and have been using
A very simple if statement with great results
Code:
=if(d22=0,(0),(c22))
I have a wb with a number of sheets.
I want to place an if /vlookup statement in the
First worksheet called – worksheet in cell i17
I want to search sheet4 called Protective.
Search column B from B7:b41 for the phrase Setup-Preassembly.
If the phrase is found then return the value from sheet 4 in column c of the same row
To Worksheet cell i17 – if the phrase is not found return to i17 a value of nothing, or blank (“”)
I tried to write something that I knew would not work but I had to start somewhere.
Code:
=if(isna(vlookup(Setup-Preassembly,sheet4!b7:b41,2,)),””,(c))
Any help would be much appreciated.