• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

vlookup + if merging

jayalaxmi

Active Member
Hi everyone,

Request you to help me with the formula..

=IF(VLOOKUP('Europe MTD'!$C5,'Week 3'!$C:$H,6,0)="None","None",IF('Week 3'!$H$3:$H$41="None","",VLOOKUP('Europe MTD'!$C5,'Week 3'!$C:$H,6,0)))

i need if the whole column Week 3'!$H$3:$H$41 is none i need it as blanks, if there are any values and none both in the column i need to display it as the values and none according to that. For that my vlookup will pick up the data for the same..

Thanks
Jaya
 
And IF ( ) could be simplified at first glance. The first one checks for "None" as result of vlookup and then returns "None". Seems redundant.

so per Khalid's suggestion, formula could be:
=IF(countif('Week 3'!$H$3:$H$41,"None"),"",VLOOKUP('Europe MTD'!$C5,'Week 3'!$C:$H,6,0))
 
Back
Top