• 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 Help

ajeet kumar singh

New Member
I need to know about all booking no. from Data 1 is available in Data 2 or Not with same value (Nights)
 

Attachments

  • Example.xls
    63.5 KB · Views: 2
Hi Ajeet,

If you want to check for night data then implement this,

Type formula in cell Q3=VLOOKUP($A3,$G$3:$K$228,5,FALSE)\
and in cell R3:=E3=Q3 ,
in R3 result will give True if Data is available with same value other wise result will give false in cell R3,

Drag formulae till Q199 and till r199 ,

Thanks,

Krishna
 
Hi Ajeet,

If you want to check for night data then implement this,

Type formula in cell Q3=VLOOKUP($A3,$G$3:$K$228,5,FALSE)\
and in cell R3:=E3=Q3 ,
in R3 result will give True if Data is available with same value other wise result will give false in cell R3,

Drag formulae till Q199 and till r199 ,

Thanks,

Krishna

You can write formula directly only in Q3 (no need to type formula in R3)

Q3=IFERROR(IF(VLOOKUP($A3,$G$3:$K$228,5,FALSE)=E3,"Available with same value","Not available with same value"),"Not Available")
Drag formula till Q199.


Hope it will work for you.


Thanks,

Krishna
 
Back
Top