If inside if(vlookup)

Yweiss0

New Member
Joined
Aug 3, 2013
Messages
46
Hello,
I need some help, I have a worksheet and in one cell I check if it equals to 0 it should do vlookup to other sheet and get from there the information. But I want to add to it that if the vlookup is also equals to 0 so it should do antoher vlookup to another worksheet and get the information from there.
So itz should be something like this:
In column F I have names of the workers and in column J I have the last day they worked this year and if the last day was last year it will vlookup the name from worksheet2 (last year) but if the vlookup get 0 so it means the last time they worked is 2 years ago it will do vlookup to the name in worksheet3 (two years ago) and will find the date. All workshhet are same so the names are always in column F and the dates are always in column J
If j2=0 do vlookup to worksheet2 and if the vlookup in worksheet2 is also equals to 0 do vlookup to worksheet3 and get the information from worksheet3.
Thanks...
 
Last edited:

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
I think you will want to structure it like this:
Code:
=IF(J2=0,IF(VLOOKUP1=0,VLOOKUP2,VLOOKUP1),"what you want returned if J2<>0")
Substitute VLOOKUP1 with your first VLOOKUP formula, and VLOOKUP2 with your second VLOOKUP formula.
 
Upvote 0

Forum statistics

Threads
1,215,220
Messages
6,123,695
Members
449,117
Latest member
Aaagu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top